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
Asked
Active
Viewed 368 times
-1
-
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 Answers
-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"

Anshul Arora
- 79
- 4
-
1yes 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