From 669be84a856a5d7b211fc3b157f4e85e99fa4cef Mon Sep 17 00:00:00 2001 From: Vivek Kiran Date: Sun, 4 Jan 2015 17:12:54 +0530 Subject: [PATCH 1/4] Update build.gradle --- build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 0be2dbb..498fb5b 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.12.+' + classpath 'com.android.tools.build:gradle:1.0.0' } } @@ -22,4 +22,4 @@ allprojects { } } -apply plugin: 'android-reporting' \ No newline at end of file +apply plugin: 'android-reporting' From af1032f8f76941c9fc659f529e23e2f5966c6d5a Mon Sep 17 00:00:00 2001 From: Vivek Kiran Date: Sun, 4 Jan 2015 17:14:03 +0530 Subject: [PATCH 2/4] Update gradle.properties --- gradle.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gradle.properties b/gradle.properties index 7381af2..3eb7c44 100644 --- a/gradle.properties +++ b/gradle.properties @@ -13,6 +13,6 @@ POM_LICENCE_DIST=repo POM_DEVELOPER_ID=eluleci POM_DEVELOPER_NAME=Emrullah Luleci -ANDROID_BUILD_TARGET_SDK_VERSION=19 -ANDROID_BUILD_TOOLS_VERSION=19.1.0 -ANDROID_BUILD_SDK_VERSION=19 \ No newline at end of file +ANDROID_BUILD_TARGET_SDK_VERSION=21 +ANDROID_BUILD_TOOLS_VERSION=21.1.2 +ANDROID_BUILD_SDK_VERSION=21 From 3ecd7bd18e197ae24d2d4a46dbccd28e03df35dc Mon Sep 17 00:00:00 2001 From: Vivek Kiran Date: Sun, 4 Jan 2015 17:14:56 +0530 Subject: [PATCH 3/4] Update build.gradle --- library/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/library/build.gradle b/library/build.gradle index c1fec80..41842a3 100644 --- a/library/build.gradle +++ b/library/build.gradle @@ -1,4 +1,4 @@ -apply plugin: 'android-library' +apply plugin: 'com.android.library' android { compileSdkVersion Integer.parseInt(project.ANDROID_BUILD_SDK_VERSION) @@ -23,4 +23,4 @@ android { dependencies { } -apply from: '../maven_push.gradle' \ No newline at end of file +apply from: '../maven_push.gradle' From ec028b175f1852d3882cb244e2749d778a2d6cb9 Mon Sep 17 00:00:00 2001 From: Vivek Kiran Date: Sun, 4 Jan 2015 17:15:56 +0530 Subject: [PATCH 4/4] Update build.gradle --- sample/build.gradle | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/sample/build.gradle b/sample/build.gradle index e78d5af..c1b62a3 100644 --- a/sample/build.gradle +++ b/sample/build.gradle @@ -1,11 +1,11 @@ -apply plugin: 'android' +apply plugin: 'com.android.application' android { - compileSdkVersion 19 - buildToolsVersion '19.1.0' + compileSdkVersion 21 + buildToolsVersion '21.1.2' defaultConfig { minSdkVersion 8 - targetSdkVersion 19 + targetSdkVersion 21 versionCode 1 versionName '1.0' } @@ -16,6 +16,6 @@ android { } dependencies { - compile 'com.android.support:appcompat-v7:19.1.0' + compile 'com.android.support:appcompat-v7:21.0.3' compile project(':library') }