diff options
author | Arne Schwabe <arne@rfc2549.org> | 2014-06-30 10:59:04 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2014-06-30 10:59:04 +0200 |
commit | 1a948f44064b66603eb7f6dca66108cef7b5c81a (patch) | |
tree | 23dbe98b6861c48c5beaa186f87b5318fe62d2e6 | |
parent | f46753f3082c330e0eb1dbc2b4c02666ff9ccd88 (diff) |
Gradle plugin v0.12
-rw-r--r-- | build.gradle | 2 | ||||
-rw-r--r-- | main/build.gradle | 2 | ||||
-rw-r--r-- | remoteExample/build.gradle | 2 | ||||
-rw-r--r-- | vpndialogxposed/build.gradle | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/build.gradle b/build.gradle index 57aaf433..4024b1b3 100644 --- a/build.gradle +++ b/build.gradle @@ -3,7 +3,7 @@ buildscript { mavenCentral() } dependencies { - classpath 'com.android.tools.build:gradle:0.11.+' + classpath 'com.android.tools.build:gradle:0.12.+' } } diff --git a/main/build.gradle b/main/build.gradle index c73584e8..527239e3 100644 --- a/main/build.gradle +++ b/main/build.gradle @@ -1,6 +1,6 @@ -apply plugin: 'android' +apply plugin: 'com.android.application' repositories { mavenCentral() diff --git a/remoteExample/build.gradle b/remoteExample/build.gradle index 7f34384c..bc9aeb7c 100644 --- a/remoteExample/build.gradle +++ b/remoteExample/build.gradle @@ -1,4 +1,4 @@ -apply plugin: 'android' +apply plugin: 'com.android.application' android { compileSdkVersion 19 diff --git a/vpndialogxposed/build.gradle b/vpndialogxposed/build.gradle index 6b641b54..77dacc7f 100644 --- a/vpndialogxposed/build.gradle +++ b/vpndialogxposed/build.gradle @@ -5,7 +5,7 @@ repositories { configurations { provided } -apply plugin: 'android' +apply plugin: 'com.android.application' dependencies { compile 'com.intellij:annotations:12.0' |