8
Gradle'da uygulama ve derleme arasındaki fark nedir?
Android Studio 3.0'a güncellenmesi ve yeni bir proje oluşturduktan sonra, ben de fark ettim build.gradleyerine yeni bağımlılıklar eklemek için yeni bir yol var compileolduğunu implementationve yerine testCompileorada testImplementation. Misal: implementation 'com.android.support:appcompat-v7:25.0.0' testImplementation 'junit:junit:4.12' onun yerine compile 'com.android.support:appcompat-v7:25.0.0' testCompile 'junit:junit:4.12' Aralarındaki fark nedir ve ne kullanmalıyım?