Skip to content

Commit d2e80e3

Browse files
committed
change deprecated compile keyword to implementation
1 parent 8b88b1a commit d2e80e3

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

raveandroid/build.gradle

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -24,21 +24,21 @@ android {
2424
}
2525

2626
dependencies {
27-
compile fileTree(dir: 'libs', include: ['*.jar'])
28-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
27+
implementation fileTree(dir: 'libs', include: ['*.jar'])
28+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2929
exclude group: 'com.android.support', module: 'support-annotations'
3030
})
31-
compile 'com.android.support:appcompat-v7:25.4.0'
32-
compile 'com.android.support:design:25.4.0'
33-
compile 'com.android.support:support-v4:25.4.0'
34-
compile 'com.squareup.picasso:picasso:2.5.2'
35-
compile 'com.squareup.retrofit2:retrofit:2.4.0'
36-
compile 'com.squareup.retrofit2:converter-gson:2.3.0'
37-
compile 'com.squareup.okhttp3:logging-interceptor:3.8.0'
38-
compile 'org.parceler:parceler-api:1.1.9'
31+
implementation 'com.android.support:appcompat-v7:25.4.0'
32+
implementation 'com.android.support:design:25.4.0'
33+
implementation 'com.android.support:support-v4:25.4.0'
34+
implementation 'com.squareup.picasso:picasso:2.5.2'
35+
implementation 'com.squareup.retrofit2:retrofit:2.4.0'
36+
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
37+
implementation 'com.squareup.okhttp3:logging-interceptor:3.8.0'
38+
implementation 'org.parceler:parceler-api:1.1.9'
3939
annotationProcessor 'org.parceler:parceler:1.1.9'
40-
compile 'com.squareup.retrofit2:converter-scalars:2.1.0'
41-
compile 'com.scottyab:aescrypt:0.0.1'
42-
testCompile 'junit:junit:4.12'
43-
compile 'com.android.support.constraint:constraint-layout:1.1.2'
40+
implementation 'com.squareup.retrofit2:converter-scalars:2.1.0'
41+
implementation 'com.scottyab:aescrypt:0.0.1'
42+
testImplementation 'junit:junit:4.12'
43+
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
4444
}

0 commit comments

Comments
 (0)