You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by bo...@apache.org on 2015/09/23 21:58:14 UTC

[03/45] android commit: Adding a working build.gradle that skips our code that can't handle non-numeric SDK targets

Adding a working build.gradle that skips our code that can't handle non-numeric SDK targets


Project: http://git-wip-us.apache.org/repos/asf/cordova-android/repo
Commit: http://git-wip-us.apache.org/repos/asf/cordova-android/commit/b0082144
Tree: http://git-wip-us.apache.org/repos/asf/cordova-android/tree/b0082144
Diff: http://git-wip-us.apache.org/repos/asf/cordova-android/diff/b0082144

Branch: refs/heads/5.0.x
Commit: b00821449554ab406582837264dfaf8ad67ca1bc
Parents: 2332740
Author: Joe Bowser <bo...@apache.org>
Authored: Wed Jul 15 16:32:20 2015 -0700
Committer: Joe Bowser <bo...@apache.org>
Committed: Wed Jul 15 16:32:20 2015 -0700

----------------------------------------------------------------------
 framework/build.gradle | 14 +++++++-------
 1 file changed, 7 insertions(+), 7 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/b0082144/framework/build.gradle
----------------------------------------------------------------------
diff --git a/framework/build.gradle b/framework/build.gradle
index 2565633..70954d6 100644
--- a/framework/build.gradle
+++ b/framework/build.gradle
@@ -15,9 +15,6 @@
    specific language governing permissions and limitations
    under the License.
 */
-
-
-
 buildscript {
     repositories {
         mavenCentral()
@@ -41,12 +38,12 @@ buildscript {
         }
     }
 }
-
 apply plugin: 'android-library'
-
 android {
-    compileSdkVersion cdvCompileSdkVersion
-    buildToolsVersion cdvBuildToolsVersion
+    // compileSdkVersion cdvCompileSdkVersion
+    // buildToolsVersion cdvBuildToolsVersion
+    compileSdkVersion 'android-MNC'
+    buildToolsVersion '23.0.0 rc3'
     publishNonDefault true
 
     compileOptions {
@@ -66,3 +63,6 @@ android {
         }
     }
 }
+
+dependencies {
+}


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@cordova.apache.org
For additional commands, e-mail: commits-help@cordova.apache.org