Skip to content

Commit ca64294

Browse files
Merge pull request amitshekhariitbhu#111 from RubenGM/implementationChange
Changed compile to implementation in the .gradle files
2 parents bd17b3f + f0fdc60 commit ca64294

File tree

2 files changed

+14
-14
lines changed

2 files changed

+14
-14
lines changed

app/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,14 +43,14 @@ android {
4343
}
4444

4545
dependencies {
46-
compile fileTree(dir: 'libs', include: ['*.jar'])
47-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
46+
implementation fileTree(dir: 'libs', include: ['*.jar'])
47+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
4848
exclude group: 'com.android.support', module: 'support-annotations'
4949
})
50-
compile 'com.android.support:appcompat-v7:27.0.0'
51-
testCompile 'junit:junit:4.12'
52-
compile 'net.zetetic:android-database-sqlcipher:3.5.7@aar'
53-
compile "android.arch.persistence.room:runtime:1.0.0"
50+
implementation 'com.android.support:appcompat-v7:27.0.0'
51+
testImplementation 'junit:junit:4.12'
52+
implementation 'net.zetetic:android-database-sqlcipher:3.5.7@aar'
53+
implementation "android.arch.persistence.room:runtime:1.0.0"
5454
annotationProcessor "android.arch.persistence.room:compiler:1.0.0"
55-
debugCompile project(':debug-db')
55+
debugImplementation project(':debug-db')
5656
}

debug-db/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,15 @@ android {
4343
}
4444

4545
dependencies {
46-
compile fileTree(dir: 'libs', include: ['*.jar'])
47-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
46+
implementation fileTree(dir: 'libs', include: ['*.jar'])
47+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
4848
exclude group: 'com.android.support', module: 'support-annotations'
4949
})
50-
testCompile 'junit:junit:4.12'
51-
compile 'com.google.code.gson:gson:2.8.0'
52-
compile 'net.zetetic:android-database-sqlcipher:3.5.7@aar'
53-
compile "android.arch.persistence.room:runtime:1.0.0"
54-
compile 'com.android.support:appcompat-v7:27.0.0'
50+
testImplementation 'junit:junit:4.12'
51+
implementation 'com.google.code.gson:gson:2.8.0'
52+
implementation 'net.zetetic:android-database-sqlcipher:3.5.7@aar'
53+
implementation "android.arch.persistence.room:runtime:1.0.0"
54+
implementation 'com.android.support:appcompat-v7:27.0.0'
5555

5656
}
5757

0 commit comments

Comments
 (0)