我尝试在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()
}
}
如何修复此错误?
1条答案
按热度按时间xxb16uws1#
我不知道为什么,但我尝试使用下面的代码
而不是
而且它现在对我来说很有效,可以毫无问题地导入最后一个应用程序compat库
现在,我可以导入库,没有任何问题