无法解析androidx,appcompat:appcompat:1.5.1 -Android Studio中的Gradle出错

m3eecexj  于 2022-11-14  发布在  Android
关注(0)|答案(1)|浏览(256)

我尝试在Gradle文件中将AppCompat库从1.0.0更新到1.5.1,但遇到此错误

Could not resolve androidx.appcompat:appcompat:1.5.1.
Required by:
    project :app

Possible solution:
 - Declare repository providing the artifact, see the documentation at https://docs.gradle.org/current/userguide/declaring_repositories.html

我尝试更新库,但总是出现错误。
这是我的Gradle文件的内容

buildscript {
ext {
    kotlin_version = '1.7.10'
}
repositories {
    jcenter()
    google()
    //maven { url 'https://maven.fabric.io/public' }
    //maven { url "https://maven.google.com" }
}
dependencies {
    classpath 'com.android.tools.build:gradle:7.2.2'
    classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"

    classpath 'com.google.gms:google-services:4.3.10'
    classpath 'com.google.firebase:firebase-crashlytics-gradle:2.7.1'
    // NOTE: Do not place your application dependencies here; they belong
    // in the individual module build.gradle files
    }
}
allprojects {
    repositories {
       jcenter()
        google()
    }
}

如何修复此错误?

xxb16uws

xxb16uws1#

我不知道为什么,但我尝试使用下面的代码

implementation group: 'com.google.android.material', name: 'material', version: '1.6.1'

而不是

implementation 'com.google.android.material:material:1.0.0'

而且它现在对我来说很有效,可以毫无问题地导入最后一个应用程序compat库

implementation 'androidx.appcompat:appcompat:1.5.1'

现在,我可以导入库,没有任何问题

相关问题