Skip to content

Commit 27d705e

Browse files
committed
Update gradle configuration
1 parent f531e60 commit 27d705e

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

app/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,12 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(include: ['*.jar'], dir: 'libs')
23-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
22+
implementation fileTree(include: ['*.jar'], dir: 'libs')
23+
androidTestImplementation ('com.android.support.test.espresso:espresso-core:2.2.2', {
2424
exclude group: 'com.android.support', module: 'support-annotations'
2525
})
26-
compile 'com.android.support:appcompat-v7:27.0.2'
27-
compile 'com.android.support.constraint:constraint-layout:1.1.2'
28-
testCompile 'junit:junit:4.12'
29-
compile project(':raveandroid')
26+
implementation 'com.android.support:appcompat-v7:27.0.2'
27+
implementation 'com.android.support.constraint:constraint-layout:1.1.2'
28+
testImplementation 'junit:junit:4.12'
29+
implementation project(':raveandroid')
3030
}

raveandroid/build.gradle

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ group = 'com.github.flutterwave'
44

55
android {
66
compileSdkVersion 25
7-
buildToolsVersion '26.0.2'
7+
buildToolsVersion '28.0.2'
88

99
defaultConfig {
1010
minSdkVersion 15
@@ -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)