更新后 androidx.appcompat:appcompat:1.4.0-beta01 构建失败
After Update androidx.appcompat:appcompat:1.4.0-beta01 build failed
从 2021 年 9 月 29 日开始,我在构建离子电容器应用程序时遇到此错误
The minCompileSdk (31) specified in a
dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties)
is greater than this module's compileSdkVersion (android-30).
Dependency: androidx.appcompat:appcompat:1.4.0-beta01.
AAR metadata file: C:\Users\username\.gradle\caches\transforms-2\files-2.1\fc809b477a0dcde256a643199c214be5\appcompat-1.4.0-beta01\META-INF\com\android\build\gradle\aar-metadata.properties.
当我检查我得到这个时,2021 年 9 月 29 日在 androidx.appcompat:appcompat:1.4.0-beta01 上有 ah beta 版本更新,它需要 minCompileSdk 31,我不知道如何减少,可以有人请帮我解决这个问题
实施'androidx.appcompat:appcompat:1.3.0'
只需在应用 build.gradle
文件中添加这行代码即可。
android {
defaultConfig {
configurations.all {
resolutionStrategy { force 'androidx.core:core-ktx:1.6.0' }
}
}
}
从 2021 年 9 月 29 日开始,我在构建离子电容器应用程序时遇到此错误
The minCompileSdk (31) specified in a
dependency's AAR metadata (META-INF/com/android/build/gradle/aar-metadata.properties)
is greater than this module's compileSdkVersion (android-30).
Dependency: androidx.appcompat:appcompat:1.4.0-beta01.
AAR metadata file: C:\Users\username\.gradle\caches\transforms-2\files-2.1\fc809b477a0dcde256a643199c214be5\appcompat-1.4.0-beta01\META-INF\com\android\build\gradle\aar-metadata.properties.
当我检查我得到这个时,2021 年 9 月 29 日在 androidx.appcompat:appcompat:1.4.0-beta01 上有 ah beta 版本更新,它需要 minCompileSdk 31,我不知道如何减少,可以有人请帮我解决这个问题
实施'androidx.appcompat:appcompat:1.3.0'
只需在应用 build.gradle
文件中添加这行代码即可。
android {
defaultConfig {
configurations.all {
resolutionStrategy { force 'androidx.core:core-ktx:1.6.0' }
}
}
}