diff --git a/.travis.yml b/.travis.yml index 47275393..37203eac 100644 --- a/.travis.yml +++ b/.travis.yml @@ -12,8 +12,8 @@ android: components: - platform-tools - tools - - build-tools-26.0.0 - - android-25 + - build-tools-26.0.1 + - android-26 - extra-android-m2repository before_install: diff --git a/app/build.gradle b/app/build.gradle index 901fa1c2..3d98130f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,19 +1,20 @@ apply plugin: 'com.android.application' android { - compileSdkVersion 25 - buildToolsVersion "26.0.0" + compileSdkVersion 26 + buildToolsVersion "26.0.1" dependencies { - compile 'com.android.support:support-annotations:25.3.1' - compile "com.android.support:support-v4:25.3.1" + compile 'com.android.support:support-annotations:26.1.0' + compile "com.android.support:support-core-utils:26.1.0" + compile "com.android.support:support-core-ui:26.1.0" compile project(":terminal-view") } defaultConfig { applicationId "com.termux" minSdkVersion 21 - targetSdkVersion 25 + targetSdkVersion 26 versionCode 53 versionName "0.53" } diff --git a/build.gradle b/build.gradle index ee9a47ab..b63c96e4 100644 --- a/build.gradle +++ b/build.gradle @@ -12,6 +12,9 @@ buildscript { allprojects { repositories { jcenter() + maven { + url "https://maven.google.com" + } } } diff --git a/terminal-emulator/build.gradle b/terminal-emulator/build.gradle index 63ddeabe..bfdb424d 100644 --- a/terminal-emulator/build.gradle +++ b/terminal-emulator/build.gradle @@ -17,12 +17,12 @@ ext { } android { - compileSdkVersion 25 - buildToolsVersion "26.0.0" + compileSdkVersion 26 + buildToolsVersion "26.0.1" defaultConfig { minSdkVersion 21 - targetSdkVersion 25 + targetSdkVersion 26 externalNativeBuild { ndkBuild { diff --git a/terminal-view/build.gradle b/terminal-view/build.gradle index 5f2c3674..5baade86 100644 --- a/terminal-view/build.gradle +++ b/terminal-view/build.gradle @@ -17,8 +17,8 @@ ext { } android { - compileSdkVersion 25 - buildToolsVersion "26.0.0" + compileSdkVersion 26 + buildToolsVersion "26.0.1" dependencies { compile 'com.android.support:support-annotations:25.3.1' @@ -27,7 +27,7 @@ android { defaultConfig { minSdkVersion 21 - targetSdkVersion 25 + targetSdkVersion 26 testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" }