在我的 Android 应用程序中,我想使用 Sweet Alert Dialog 库。不幸的是,在 Gradle 文件中正确添加以下行后:
implementation 'com.github.taimoorsultani:android-sweetalert2:2.0.2'
出现构建错误:
Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0.
有办法解决这个问题吗?”
根据https://github.com/gradle/gradle/releases,最新稳定版本是8.11。
我认为将gradle版本更改为8.x应该可以解决问题。
转到-> Gradle -> gradle-wrapper.properties
distributionUrl=https\://services.gradle.org/distributions/gradle-8.x-bin.zip
将构建gradle版本更改为兼容版本..
classpath 'com.android.tools.build:gradle:8.x.x'