Skip to content
This repository was archived by the owner on Mar 21, 2019. It is now read-only.

Commit 2bdb7a4

Browse files
committed
feat(android): update support library to 28.0.0 (#145)
1 parent a26755a commit 2bdb7a4

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

android/widgets/build.gradle

+6-6
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ def computeCompileSdkVersion () {
1111
return compileSdk
1212
}
1313
else {
14-
return 27
14+
return 28
1515
}
1616
}
1717

@@ -20,7 +20,7 @@ def computeBuildToolsVersion() {
2020
return buildToolsVersion
2121
}
2222
else {
23-
return "27.0.3"
23+
return "28.0.2"
2424
}
2525
}
2626

@@ -29,7 +29,7 @@ def computeSupportVersion() {
2929
return supportVersion
3030
}
3131
else {
32-
return "27.1.1"
32+
return "28.0.0"
3333
}
3434
}
3535

@@ -38,7 +38,7 @@ def computeTargetSdkVersion() {
3838
return targetSdk
3939
}
4040
else {
41-
return 27
41+
return 28
4242
}
4343
}
4444

@@ -61,8 +61,8 @@ android {
6161
}
6262

6363
dependencies {
64-
compile fileTree(include: ['*.jar'], dir: 'libs')
65-
compile 'com.android.support:support-v4:' + computeSupportVersion()
64+
implementation fileTree(include: ['*.jar'], dir: 'libs')
65+
implementation 'com.android.support:support-v4:' + computeSupportVersion()
6666
}
6767

6868
task cleanBuildDir (type: Delete) {

0 commit comments

Comments
 (0)