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)Omg, finally got it!
So I had to use it like it's mentioned on jitpack official site:
maven { url 'https://www.jitpack.io' }
but I just copy/paste it from jitpack github:
maven { url 'https://jitpack.io' }