Skip to content

Commit e214845

Browse files
author
ehowlsla
committed
gradle version upgrade
1 parent b2e4ac2 commit e214845

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

bootpay/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apply plugin: 'kotlin-android'
33

44
android {
55
compileSdkVersion 25
6-
buildToolsVersion '26.0.2'
6+
buildToolsVersion '27.0.3'
77

88
defaultConfig {
99
minSdkVersion 17
@@ -21,7 +21,7 @@ android {
2121

2222
dependencies {
2323
implementation fileTree(dir: 'libs', include: ['*.jar'])
24-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
24+
androidTestImplementation('com.android.support.test.espresso:espresso-core:2.2.2', {
2525
exclude group: 'com.android.support', module: 'support-annotations'
2626
})
2727
implementation 'com.google.code.gson:gson:2.8.0'

sample/build.gradle

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 25
5-
buildToolsVersion '26.0.2'
5+
buildToolsVersion '27.0.3'
66
defaultConfig {
77
applicationId "bootpay.co.kr.samplepayment"
88
minSdkVersion 17
@@ -19,12 +19,12 @@ android {
1919
}
2020

2121
dependencies {
22-
compile fileTree(dir: 'libs', include: ['*.jar'])
23-
androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
22+
implementation fileTree(dir: 'libs', include: ['*.jar'])
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:25.3.1'
27-
compile 'com.android.support.constraint:constraint-layout:1.0.2'
28-
testCompile 'junit:junit:4.12'
29-
compile project(path: ':bootpay')
26+
implementation 'com.android.support:appcompat-v7:25.3.1'
27+
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
28+
testImplementation 'junit:junit:4.12'
29+
implementation project(path: ':bootpay')
3030
}

0 commit comments

Comments
 (0)