I\'ve got a gradle FAILURE:
...\"Deprecated Gradle features were used in this build, making it incompatible with Gradle 5.0.\"
Case descrip
Set distributionUrl path in gradle-wrapper-properties files as :
distributionUrl=https://services.gradle.org/distributions/gradle-4.10.2-all.zip
Update your third party dependencies. for example I updated dependency from
implementation 'com.github.ybq:Android-SpinKit:1.1.0'
to implementation 'com.github.ybq:Android-SpinKit:1.2.0'
. and in my case issue has been solved.