android studio无法解析版本25.4.0或26或27的依赖项

时间:2017-11-07 14:19:41

标签: android android-studio

我使用android studio 3但我不能使用谷歌依赖版本25.4.0,26或27。

我必须使用版本25.3.1

我将google()添加到存储库。 enter image description here

  

无法解析com.android.support:appcompat-v7:27.0.0。   无法下载资源“https://dl.google.com/dl/android/maven2/com/android/support/appcompat-v7/27.0.0/appcompat-v7-27.0.0.pom”的SHA1。   对于输入字符串:“

enter image description here

1 个答案:

答案 0 :(得分:0)

查找根 build.gradle 文件并在所有项目代码中添加google maven repo

repositories {
        mavenLocal()
        mavenCentral()
        maven {                                  // <-- Add this
            url 'https://maven.google.com/' 
            name 'Google'
        }
    } 

最好使用特定版本而不是变量版本

编译'com.android.support:appcompat-v7:27.0.0' 如果您使用的是Android Studio 3.0或更高版本

repositories {
      mavenLocal()
      mavenCentral()
      google()        //---> Add this
} 

以这种方式注入依赖:

implementation 'com.android.support:appcompat-v7:27.0.0'

希望这会对你有所帮助。