Reputation: 167
In current my android project i have use android gradle
plugin version 2.3.0 but when i try to complier i have receive this warning
Warning:Configuration 'compile' is obsolete and has been replaced with 'implementation'. It will be removed at the end of 2018
i see in Google's Maven Repository and i see at com.android.tools.build -> gradle
i don't found index of gradle version below 2.+
Did any one know is my assumption is true? If it true how can i found reference link for this announcement from google android official web site?
Thank you.
Upvotes: 0
Views: 114
Reputation: 247
As the error states, you have to replace compile with implementation in dependencies since compile is obsolete.
Please check here for example.
Upvotes: 1