0

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.

King Dark
  • 167
  • 1
  • 2
  • 10
  • The error warning is not about gradle plugin version , its about using `compile` in `build.gradle` file . Replace `compile` with `implementation` and every thing should work fine – Manohar Dec 14 '18 at 12:01
  • Ok i got it many thanks – King Dark Dec 14 '18 at 12:56

1 Answers1

1

As the error states, you have to replace compile with implementation in dependencies since compile is obsolete.

Please check here for example.

David Breen
  • 247
  • 1
  • 8