Skip to content
This repository was archived by the owner on Mar 21, 2019. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions android/widgets/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ def computeCompileSdkVersion () {
return compileSdk
}
else {
return 27
return 28
}
}

Expand All @@ -20,7 +20,7 @@ def computeBuildToolsVersion() {
return buildToolsVersion
}
else {
return "27.0.3"
return "28.0.2"
}
}

Expand All @@ -29,7 +29,7 @@ def computeSupportVersion() {
return supportVersion
}
else {
return "27.1.1"
return "28.0.0"
}
}

Expand All @@ -38,7 +38,7 @@ def computeTargetSdkVersion() {
return targetSdk
}
else {
return 27
return 28
}
}

Expand All @@ -61,8 +61,8 @@ android {
}

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

task cleanBuildDir (type: Delete) {
Expand Down