diff options
author | Koushik Dutta <koushd@gmail.com> | 2015-03-14 00:09:27 -0700 |
---|---|---|
committer | Koushik Dutta <koushd@gmail.com> | 2015-03-14 00:09:27 -0700 |
commit | f453c6566998be2e9326a4e65139ab2d0f472152 (patch) | |
tree | 237ab2c97bf02a0e24d612c11103ddba29e42c7b /AndroidAsyncSample | |
parent | c682ac78096b5a496541101dcbdcfa07f724a804 (diff) | |
download | AndroidAsync-f453c6566998be2e9326a4e65139ab2d0f472152.tar.gz AndroidAsync-f453c6566998be2e9326a4e65139ab2d0f472152.tar.bz2 AndroidAsync-f453c6566998be2e9326a4e65139ab2d0f472152.zip |
tighten up gradle files with android studio project defaults
Diffstat (limited to 'AndroidAsyncSample')
-rw-r--r-- | AndroidAsyncSample/build.gradle | 18 |
1 files changed, 3 insertions, 15 deletions
diff --git a/AndroidAsyncSample/build.gradle b/AndroidAsyncSample/build.gradle index 6bbfb2a..1f86843 100644 --- a/AndroidAsyncSample/build.gradle +++ b/AndroidAsyncSample/build.gradle @@ -1,17 +1,5 @@ -buildscript { - repositories { - mavenCentral() - } - dependencies { - classpath 'com.android.tools.build:gradle:+' - } -} apply plugin: 'com.android.application' -repositories { - mavenCentral() -} - dependencies { compile project(':AndroidAsync:AndroidAsync') } @@ -26,11 +14,11 @@ android { } defaultConfig { - targetSdkVersion 21 + targetSdkVersion 22 minSdkVersion 9 } - compileSdkVersion 21 - buildToolsVersion "21.1.0" + compileSdkVersion 22 + buildToolsVersion "22.0.0" } |