jitpack
jitpack.io failed to resolve github repo
For anyone else that made the simple mistake I made: Ensure you add the maven { url “https://jitpack.io” } under allprojects instead of buildscript. Project build.gradle file: buildscript { repositories { jcenter() // DO NOT ADD IT HERE!!! } … } allprojects { repositories { mavenLocal() jcenter() // ADD IT HERE maven { url “https://jitpack.io” … Read more
Failed to resolve: com.github.PhilJay:MPAndroidChart:v2.1.4
Add maven { url “https://jitpack.io” } to repositories under allprojects not under buildscript see screenshot: