Update gradle configuration

This commit is contained in:
Fredrik Fornwall
2017-09-17 11:46:58 +02:00
parent f2757fdb76
commit 82673d3f82
5 changed files with 17 additions and 13 deletions

View File

@@ -12,8 +12,8 @@ android:
components: components:
- platform-tools - platform-tools
- tools - tools
- build-tools-26.0.0 - build-tools-26.0.1
- android-25 - android-26
- extra-android-m2repository - extra-android-m2repository
before_install: before_install:

View File

@@ -1,19 +1,20 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion "26.0.0" buildToolsVersion "26.0.1"
dependencies { dependencies {
compile 'com.android.support:support-annotations:25.3.1' compile 'com.android.support:support-annotations:26.1.0'
compile "com.android.support:support-v4:25.3.1" compile "com.android.support:support-core-utils:26.1.0"
compile "com.android.support:support-core-ui:26.1.0"
compile project(":terminal-view") compile project(":terminal-view")
} }
defaultConfig { defaultConfig {
applicationId "com.termux" applicationId "com.termux"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 25 targetSdkVersion 26
versionCode 53 versionCode 53
versionName "0.53" versionName "0.53"
} }

View File

@@ -12,6 +12,9 @@ buildscript {
allprojects { allprojects {
repositories { repositories {
jcenter() jcenter()
maven {
url "https://maven.google.com"
}
} }
} }

View File

@@ -17,12 +17,12 @@ ext {
} }
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion "26.0.0" buildToolsVersion "26.0.1"
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 25 targetSdkVersion 26
externalNativeBuild { externalNativeBuild {
ndkBuild { ndkBuild {

View File

@@ -17,8 +17,8 @@ ext {
} }
android { android {
compileSdkVersion 25 compileSdkVersion 26
buildToolsVersion "26.0.0" buildToolsVersion "26.0.1"
dependencies { dependencies {
compile 'com.android.support:support-annotations:25.3.1' compile 'com.android.support:support-annotations:25.3.1'
@@ -27,7 +27,7 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 25 targetSdkVersion 26
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
} }