0

基本上问题是我无法解决 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。

4

1 回答 1

1

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

所以结果字符串应该是这样的:implementation 'com.github.mukeshsolanki:country-picker-android:2.0.1'

于 2019-02-15T14:25:38.203 回答