Fix "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0".

Опубликовано: 30 Сентябрь 2024
на канале: iRekha Tech Solutions
23,714
136

Find out deprecated gradle features using the "--warning--mode" command and get the detailed message for the warning "Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0" and fix the problem.

Add following command in gradle.properties file
org.gradle.warning.mode=all

Add dependency in JCenter using Content filter.
jcenter {
content {
// org.jetbrains.trove4j is only available in JCenter
includeGroup("org.jetbrains.trove4j")
}
}


#gradle
#deprecated
#incompatible
#androidstudio