Androidstudio警告:Deprecated Gradle features were used in this build, making it incompatible with G...

Deprecated Gradle features were used in this build, making it incompatible with Gradle 8.0.
Use '--warning-mode all' to show the individual deprecation warnings.

处理方法:
在项目下gradle.properties文件加入:

# org.gradle.warning.mode=(all,none,summary) 三个参数可选
org.gradle.warning.mode=all

再次build,IDE会提示详细的项目异常点,根据提示去修改

你可能感兴趣的:(Androidstudio警告:Deprecated Gradle features were used in this build, making it incompatible with G...)