Can\'t use anymore maven { url \"https://jitpack.io\" }. I have following gradle:
apply plugin: \'com.android.application\'
android {
comp
Its because jitpack is the only repository you've added. You need to also add Google's repo like this:
allprojects {
repositories {
google()
maven { url "https://jitpack.io" }
}
}
Also on a side note, just a few tips:
:27.+)allprojects function in your project level gradle. (project/build.gradle)