Gradle dosyasındaki compile yazan yerleri implementation yapman gerekiyor.
Örnek:
implementation 'com.android.support:appcompat-v7:25.0.0'
testImplementation 'junit:junit:4.12'
Eski hali
compile 'com.android.support:appcompat-v7:25.0.0'
testCompile 'junit:junit:4.12'
compile değiştir implementation
testCompile değiştir testImplementation
debugCompile değiştir debugImplementation
androidTestCompile değiştir androidTestImplementation