Follow

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use
Contact

Application compilation error. Could not find com.jaeger.statusbarutil:library:1.5.1

This application has already been assembled by another developer.
I get the following error while building the application

Could not find com.jaeger.statusbarutil:library:1.5.1.
Required by:
   project :app
Search in build.gradle files

in build.gradle is connecting a dependency
implementation 'com.jaeger.statusbarutil:library:1.5.1'

The project uses the following repositories

MEDevel.com: Open-source for Healthcare and Education

Collecting and validating open-source software for healthcare, education, enterprise, development, medical imaging, medical records, and digital pathology.

Visit Medevel

repositories {
   google()
   mavenCentral()
   maven { url 'https://jitpack.io' }
}

I tried adding an authorization token to maven { url 'https://jitpack.io ' }, I also tried to specify the username and password from github, but in this case I got a 403 error when trying to download the dependency.

>Solution :

Try adding this Maven repository alongside your current one:

maven {
    url 'https://jitpack.io'
}

// Add this
maven {
    url 'https://maven.aliyun.com/repository/jcenter'
}

I hope this helps!

Add a comment

Leave a Reply

Keep Up to Date with the Most Important News

By pressing the Subscribe button, you confirm that you have read and are agreeing to our Privacy Policy and Terms of Use

Discover more from Dev solutions

Subscribe now to keep reading and get access to the full archive.

Continue reading