summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoey Grover <joeygrover@gmail.com>2018-10-03 15:42:48 -0400
committerJoey Grover <joeygrover@gmail.com>2018-10-03 15:42:48 -0400
commit12c0747944fa6e87fe8d16905513426b89392cd1 (patch)
treeea7392532677048e3863bf32f4c4116e684bd1b0
parent13e04232a32ba311e0d3a7847b7f1f841f6f10ec (diff)
downloadsdl_android-12c0747944fa6e87fe8d16905513426b89392cd1.tar.gz
Update gradle4.7.0-rc1
- Update compile version to latest - Update target to 26 as required by Google - Update our version code and name - Update annotations dependency
-rw-r--r--sdl_android/build.gradle10
1 files changed, 5 insertions, 5 deletions
diff --git a/sdl_android/build.gradle b/sdl_android/build.gradle
index a215ec62b..8bcd77a76 100644
--- a/sdl_android/build.gradle
+++ b/sdl_android/build.gradle
@@ -1,12 +1,12 @@
apply plugin: 'com.android.library'
android {
- compileSdkVersion 27
+ compileSdkVersion 28
defaultConfig {
minSdkVersion 8
- targetSdkVersion 19
- versionCode 7
- versionName "4.6.3"
+ targetSdkVersion 26
+ versionCode 8
+ versionName "RC1-4.7.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
resValue "string", "SDL_LIB_VERSION", '\"' + versionName + '\"'
}
@@ -41,7 +41,7 @@ dependencies {
testImplementation 'junit:junit:4.12'
testImplementation 'org.mockito:mockito-core:2.9.0'
androidTestImplementation 'org.mockito:mockito-android:2.9.0'
- api 'com.android.support:support-annotations:27.1.1'
+ api 'com.android.support:support-annotations:28.0.0'
}
buildscript {