King Dark
King Dark

Reputation: 167

android gradle plugin version below 2.+ has been deprecated at end 2018 that is true?

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.+ enter image description here 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

Answers (1)

David Breen
David Breen

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

Related Questions