Update gradle setup

This commit is contained in:
Fredrik Fornwall
2016-10-20 01:00:28 +02:00
parent 8ad7a6669c
commit 755513bb33
3 changed files with 8 additions and 8 deletions

View File

@@ -12,8 +12,8 @@ android:
components: components:
- platform-tools - platform-tools
- tools - tools
- build-tools-24.0.3 - build-tools-25.0.0
- android-24 - android-25
- extra-android-m2repository - extra-android-m2repository
before_install: before_install:

View File

@@ -1,18 +1,18 @@
apply plugin: 'com.android.application' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 24 compileSdkVersion 25
buildToolsVersion "24.0.3" buildToolsVersion "25.0.0"
dependencies { dependencies {
compile 'com.android.support:support-annotations:24.2.1' compile 'com.android.support:support-annotations:25.0.0'
compile "com.android.support:support-v4:24.2.1" compile "com.android.support:support-v4:25.0.0"
} }
defaultConfig { defaultConfig {
applicationId "com.termux" applicationId "com.termux"
minSdkVersion 21 minSdkVersion 21
targetSdkVersion 24 targetSdkVersion 25
versionCode 42 versionCode 42
versionName "0.42" versionName "0.42"

View File

@@ -5,7 +5,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:2.2.1' classpath 'com.android.tools.build:gradle:2.2.2'
} }
} }