diff --git a/.travis.yml b/.travis.yml index 439a3d7..73adc3a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ before_install: - unzip gradle-2.14.1-bin.zip - export GRADLE_HOME=$PWD/gradle-2.14.1 - export PATH=$GRADLE_HOME/bin:$PATH - - ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-24.0.3 + - ( sleep 5 && while [ 1 ]; do sleep 1; echo y; done ) | android update sdk -a --no-ui --filter tool,platform-tool,build-tools-25.0.0 android: @@ -16,16 +16,16 @@ android: - tools # The BuildTools version used by your project - - build-tools-24 + - build-tools-25 # The SDK version used to compile your project - - android-24 + - android-25 # Additional components - extra-google-google_play_services - extra-google-m2repository - extra-android-m2repository - - addon-google_apis-google-24 + - addon-google_apis-google-25 # Specify at least one system image, # if you need to run emulator(s) during your tests diff --git a/build.gradle b/build.gradle index af4d134..ef966e3 100755 --- a/build.gradle +++ b/build.gradle @@ -4,7 +4,7 @@ buildscript { } dependencies { - classpath 'com.android.tools.build:gradle:2.2.1' + classpath 'com.android.tools.build:gradle:2.2.2' } } apply plugin: 'com.android.library' @@ -22,11 +22,11 @@ android { androidTest.setRoot('tests') } - compileSdkVersion 24 - buildToolsVersion '24.0.3' + compileSdkVersion 25 + buildToolsVersion '25.0.0' dependencies { - compile 'com.android.support:appcompat-v7:24.2.1' + compile 'com.android.support:appcompat-v7:25.0.0' } useLibrary 'org.apache.http.legacy' @@ -35,8 +35,8 @@ android { versionCode 10006 versionName "1.0.6" minSdkVersion 9 - targetSdkVersion 24 - compileSdkVersion 24 + targetSdkVersion 25 + compileSdkVersion 25 } productFlavors {}