基本上,问题是即使我将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。
答案 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'