Skip to content

Commit

Permalink
fixed android studio support
Browse files Browse the repository at this point in the history
  • Loading branch information
alexvasilkov committed Sep 7, 2014
1 parent 6d1369b commit 175d812
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions .gitignore
@@ -1,3 +1,5 @@
.gradle
.idea
*.iml
build
local.properties
2 changes: 1 addition & 1 deletion gradle.properties
Expand Up @@ -16,4 +16,4 @@ POM_DEVELOPER_NAME=Alex Vasilkov
ANDROID_MIN_SDK=14
ANDROID_TARGET_SDK=19
ANDROID_COMPILE_SDK=19
ANDROID_BUILD_TOOLS_VERSION=19.0.3
ANDROID_BUILD_TOOLS_VERSION=20.0.0
4 changes: 2 additions & 2 deletions library/build.gradle
Expand Up @@ -3,11 +3,11 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.10.+'
classpath 'com.android.tools.build:gradle:0.12.2'
}
}

apply plugin: 'android-library'
apply plugin: 'com.android.library'

android {
compileSdkVersion Integer.parseInt(ANDROID_COMPILE_SDK)
Expand Down
8 changes: 4 additions & 4 deletions sample/build.gradle
Expand Up @@ -3,13 +3,13 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.10.+'
classpath 'com.alexvasilkov:android_sign:0.2'
classpath 'com.android.tools.build:gradle:0.12.2'
classpath 'com.alexvasilkov:android-sign-release:0.3.6'
}
}

apply plugin: 'android'
apply plugin: 'android_sign'
apply plugin: 'com.android.application'
apply plugin: 'android-sign-release'

android {
compileSdkVersion Integer.parseInt(ANDROID_COMPILE_SDK)
Expand Down

0 comments on commit 175d812

Please sign in to comment.