I get an android source code with org.litepal.android:java:3.0.0.
dependency, this dependency can be found in jcenter, according to https://mvnrepository.com/artifact/org.litepal.android/java/3.0.0
I have a same error with other libraries.
I have commented the jCenter source in my build.gradle:
repositories {
flatDir {
dirs 'libs'
maven { url 'https://jitpack.io' }
}
mavenCentral()
google()
// jcenter()
}
I get a following error message:
> Could not find org.simple:androideventbus:1.0.5.1.
Required by:
project :app
> Could not find org.litepal.android:java:3.0.0.
Required by:
project :app
> Could not find cn.bingoogolapple:bga-progressbar:1.0.1.
Required by:
project :app
```