GNOME Bugzilla – Bug 797093
Android tutorials: 'compile' and 'testCompile' configurations are deprecated
Last modified: 2018-09-07 08:50:04 UTC
When build project, the following warning message will be displayed. -- Configuration 'compile' is obsolete and has been replaced with 'implementation' and 'api'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html Configuration 'testCompile' is obsolete and has been replaced with 'testImplementation' and 'testApi'. It will be removed at the end of 2018. For more information see: http://d.android.com/r/tools/update-dependency-configurations.html -- So Replace new configuration. 'compile' -> 'implementation' 'testCompile' -> 'testImplementation'
Created attachment 373556 [details] [review] Android tutorials: 'compile' and 'testCompile' configurations are deprecated
Which NDK version does this need at minimum?
This is Gradle build used Android Gradle Plugin. These configurations to those that were deprecated as of Android Gradle Plugin 3.0.0. http://d.android.com/r/tools/update-dependency-configurations.html
Attachment 373556 [details] pushed as 23b9898 - Android tutorials: 'compile' and 'testCompile' configurations are deprecated