即使我的过程正确,也无法解析github依赖关系

时间:2019-02-15 14:06:53

标签: android gradle build.gradle jitpack

基本上,问题是即使我将GitHub依赖项添加到项目级别build.gradle,也无法解决。

build.gradle(项目)

allprojects {
    repositories {
    google()
    jcenter()
    maven { url "https://jitpack.io" }
    }
}

和应用级别build.gradle

dependencies {
    implementation 'com.github.mukeshsolanki:country-picker-android:<latest-version>'

我该如何解决?这可能是什么原因?我已经更新到最新版本的Android Studio。

1 个答案:

答案 0 :(得分:1)

在应用程序级别build.gradle文件的字符串implementation 'com.github.mukeshsolanki:country-picker-android:<latest-version>'中,您必须用库的实际版本替换<latest-version>子字符串。当前的最新版本是2.0.1。

因此,结果字符串应为:implementation 'com.github.mukeshsolanki:country-picker-android:2.0.1'