updated to newer gradle and sdk

This commit is contained in:
Frank Morgner
2015-07-18 04:04:04 +02:00
parent a1026c43c5
commit d6b20d6cdd
2 changed files with 7 additions and 7 deletions

View File

@@ -1,24 +1,24 @@
apply plugin: 'android' apply plugin: 'com.android.application'
android { android {
compileSdkVersion 19 compileSdkVersion 22
buildToolsVersion "19.1.0" buildToolsVersion "22.0.1"
defaultConfig { defaultConfig {
minSdkVersion 10 minSdkVersion 10
targetSdkVersion 19 targetSdkVersion 22
versionCode 3 versionCode 3
versionName "1.2" versionName "1.2"
} }
buildTypes { buildTypes {
release { release {
runProguard false minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
} }
} }
} }
dependencies { dependencies {
compile 'com.android.support:appcompat-v7:19.+' compile 'com.android.support:appcompat-v7:22.2.0'
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
} }

View File

@@ -5,7 +5,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:0.11.+' classpath 'com.android.tools.build:gradle:1.2.3'
} }
} }