From 644c83ed69ffe40527d3cfed29596b1d095ed9a5 Mon Sep 17 00:00:00 2001 From: Emux Date: Fri, 9 Jun 2017 20:24:38 +0300 Subject: [PATCH] Android 8.0 (O) --- .travis.yml | 4 ++-- build.gradle | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.travis.yml b/.travis.yml index fbcae6b9..76590260 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,8 +6,8 @@ android: components: - platform-tools - tools - - build-tools-25.0.3 - - android-25 + - build-tools-26.0.0 + - android-26 - extra-android-m2repository env: global: diff --git a/build.gradle b/build.gradle index 60b88a3c..1ec9180b 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { jcenter() } dependencies { - classpath 'com.android.tools.build:gradle:2.3.2' + classpath 'com.android.tools.build:gradle:2.3.3' classpath 'com.github.dcendents:android-maven-gradle-plugin:1.5' } } @@ -13,7 +13,7 @@ allprojects { version = 'master-SNAPSHOT' ext.isReleaseVersion = !version.endsWith("SNAPSHOT") - ext.androidBuildVersionTools = "25.0.3" + ext.androidBuildVersionTools = "26.0.0" ext.gdxVersion = "1.9.6" ext.gwtVersion = "2.8.0" ext.slf4jVersion = "1.7.25" @@ -27,7 +27,7 @@ allprojects { } } -def androidCompileSdk() { return 25 } +def androidCompileSdk() { return 26 } def androidMinSdk() { return 10 }