feat(android): update support library to 28.0.0 (#145)

This commit is contained in:
Manol Donev
2018-10-23 14:43:32 +03:00
committed by Manol Donev
parent a26755adb7
commit 2bdb7a42e2

View File

@@ -11,7 +11,7 @@ def computeCompileSdkVersion () {
return compileSdk return compileSdk
} }
else { else {
return 27 return 28
} }
} }
@@ -20,7 +20,7 @@ def computeBuildToolsVersion() {
return buildToolsVersion return buildToolsVersion
} }
else { else {
return "27.0.3" return "28.0.2"
} }
} }
@@ -29,7 +29,7 @@ def computeSupportVersion() {
return supportVersion return supportVersion
} }
else { else {
return "27.1.1" return "28.0.0"
} }
} }
@@ -38,7 +38,7 @@ def computeTargetSdkVersion() {
return targetSdk return targetSdk
} }
else { else {
return 27 return 28
} }
} }
@@ -61,8 +61,8 @@ android {
} }
dependencies { dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs') implementation fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:support-v4:' + computeSupportVersion() implementation 'com.android.support:support-v4:' + computeSupportVersion()
} }
task cleanBuildDir (type: Delete) { task cleanBuildDir (type: Delete) {