replace Compile with Implementation in gradle

This commit is contained in:
tibbi 2017-11-19 22:32:54 +01:00
parent 777e6f649a
commit 1b8e8247dc
1 changed files with 7 additions and 7 deletions

View File

@ -47,14 +47,14 @@ ext {
} }
dependencies { dependencies {
compile 'com.simplemobiletools:commons:2.41.4' implementation 'com.simplemobiletools:commons:2.41.4'
compile 'joda-time:joda-time:2.9.9' implementation 'joda-time:joda-time:2.9.9'
compile 'com.facebook.stetho:stetho:1.5.0' implementation 'com.facebook.stetho:stetho:1.5.0'
compile 'com.android.support:multidex:1.0.2' implementation 'com.android.support:multidex:1.0.2'
compile 'com.google.code.gson:gson:2.8.2' implementation 'com.google.code.gson:gson:2.8.2'
debugCompile "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion" debugImplementation "com.squareup.leakcanary:leakcanary-android:$leakCanaryVersion"
releaseCompile "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion" releaseImplementation "com.squareup.leakcanary:leakcanary-android-no-op:$leakCanaryVersion"
} }
Properties props = new Properties() Properties props = new Properties()