From 1736f912ace3469ce2a6ab4d14eb15434d40c7db Mon Sep 17 00:00:00 2001 From: Shengzhang Wen Date: Sun, 3 May 2015 23:36:12 +0800 Subject: [PATCH] update support library --- demo/build.gradle | 2 +- gradle/wrapper/gradle-wrapper.properties | 4 ++-- library/build.gradle | 6 +++--- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/demo/build.gradle b/demo/build.gradle index c16c0ee..de31b19 100644 --- a/demo/build.gradle +++ b/demo/build.gradle @@ -22,7 +22,7 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) compile project(':library') - compile 'com.android.support:appcompat-v7:20.+' + compile 'com.android.support:appcompat-v7:22.+' compile 'com.nineoldandroids:library:2.4.0' compile 'com.daimajia.androidanimations:library:1.0.3@aar' } diff --git a/gradle/wrapper/gradle-wrapper.properties b/gradle/wrapper/gradle-wrapper.properties index 043d0ff..918e0f3 100644 --- a/gradle/wrapper/gradle-wrapper.properties +++ b/gradle/wrapper/gradle-wrapper.properties @@ -1,6 +1,6 @@ -#Sun May 03 23:30:33 CST 2015 +#Sun May 03 23:34:25 CST 2015 distributionBase=GRADLE_USER_HOME distributionPath=wrapper/dists zipStoreBase=GRADLE_USER_HOME zipStorePath=wrapper/dists -distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-bin.zip +distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip diff --git a/library/build.gradle b/library/build.gradle index 12327d7..f519c12 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -2,7 +2,7 @@ apply plugin: 'com.android.library' android { compileSdkVersion 22 - buildToolsVersion "20" + buildToolsVersion "22.0.1" defaultConfig { minSdkVersion 8 @@ -22,8 +22,8 @@ android { dependencies { compile fileTree(dir: 'libs', include: ['*.jar']) - compile 'com.android.support:appcompat-v7:20.+' - compile "com.android.support:support-v4:20.0.+" + compile 'com.android.support:appcompat-v7:22.+' + compile "com.android.support:support-v4:22.+" compile 'com.squareup.picasso:picasso:+' compile 'com.nineoldandroids:library:+' }