Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

218
Views
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?

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

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.

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!