-1

I has been changed all of compile in gradle to be implementation . But there is still warning in my project. do you know what I left behind? thank you

compile and implementation change in gradle

AskNilesh
  • 67,701
  • 16
  • 123
  • 163
hakim
  • 11
  • 5
  • In android studio press `Ctrl + Shift + F` and search for `compile` keyword. Check if you have missed at some place. If this doesn't help paste the code instead of image. – Sagar Apr 03 '18 at 08:30
  • I have did that. (search) and there isn't compile cause I have replaced all of them. That why I ask like that. – hakim Apr 03 '18 at 10:00

1 Answers1

-1

You have not left anything. The warning is just about the newer version of dependencies which are available and can be integrated into your project if you want.

And for "compile" related warning, just go to your gradle file and find "compile" keyword and then replace it with "implementation"

  • 1
    yes of course, I understand for that. But I have changed all of "compile" to "implementation" but that still there is warning about that. So, I think maybe there is some mistake in my declaration, or maybe not using "implementation" but "api" . Thank's for your help Anshul – hakim Apr 03 '18 at 10:06