Skip to content

Commit 018ecb6

Browse files
Use implementation instead of compile
1 parent 954045f commit 018ecb6

File tree

1 file changed

+6
-7
lines changed

1 file changed

+6
-7
lines changed

app/build.gradle

Lines changed: 6 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,16 +20,15 @@ android {
2020
}
2121

2222
dependencies {
23-
compile fileTree(dir: 'libs', include: ['*.jar'])
24-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
23+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2524
exclude group: 'com.android.support', module: 'support-annotations'
2625
})
27-
compile 'com.android.support:appcompat-v7:25.4.0'
28-
testCompile 'junit:junit:4.12'
29-
compile 'com.android.support.constraint:constraint-layout:1.0.2'
26+
implementation 'com.android.support:appcompat-v7:25.4.0'
27+
testImplementation 'junit:junit:4.12'
28+
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
3029

31-
compile 'com.google.dagger:dagger:2.13'
30+
implementation 'com.google.dagger:dagger:2.13'
3231
annotationProcessor 'com.google.dagger:dagger-compiler:2.13'
3332
annotationProcessor 'com.google.dagger:dagger-android-processor:2.13'
34-
compile 'com.google.dagger:dagger-android-support:2.13'
33+
implementation 'com.google.dagger:dagger-android-support:2.13'
3534
}

0 commit comments

Comments
 (0)