'Many third party libraries not working with android studio bumblebee update
Recently I've updated my android studio to bumblebee. With this update, many of the libraries I've used in artic fox is not working. some of them is following:-
implementation 'com.github.smarteist:autoimageslider:1.4.0-appcompat' implementation 'com.hbb20:ccp:1.7.1'
the question is how can I use the old library in the new update of the android studio?
Solution 1:[1]
The issue you are facing is really simple to solve. Just follow my steps down below.
Step: 1
On the left side of Android Studio click on the 'Gradle Script' after that go to settings.gradle
Step: 2
Copy this code and paste it inside repositories.
jcenter()
maven { url "https://jitpack.io" }
Paste it here.
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
//paste the code here
}
}
After that click on 'Try again or Sync'. This may solve your problem. Thank you.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 |