You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ia...@apache.org on 2014/08/28 17:27:25 UTC

android commit: CB-3445: Ensure that JAR files in libs directory are included

Repository: cordova-android
Updated Branches:
  refs/heads/4.0.x 7caa96abc -> 233e51386


CB-3445: Ensure that JAR files in libs directory are included


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

Branch: refs/heads/4.0.x
Commit: 233e51386073d02a9e9ee552e7f59e01c23ea508
Parents: 7caa96a
Author: Ian Clelland <ic...@chromium.org>
Authored: Thu Aug 28 11:26:35 2014 -0400
Committer: Ian Clelland <ic...@chromium.org>
Committed: Thu Aug 28 11:26:58 2014 -0400

----------------------------------------------------------------------
 bin/templates/project/build.gradle | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/233e5138/bin/templates/project/build.gradle
----------------------------------------------------------------------
diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle
index dcebbc5..8bccc41 100644
--- a/bin/templates/project/build.gradle
+++ b/bin/templates/project/build.gradle
@@ -15,6 +15,7 @@ buildscript {
 ext.multiarch=false
 
 dependencies {
+    compile fileTree(dir: 'libs', include: '*.jar')
     for (subproject in getProjectList()) {
         compile project(subproject)
     }