You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@cordova.apache.org by ag...@apache.org on 2015/02/25 20:17:26 UTC

android commit: CB-8548 Use debug-signing.properties and release-signing.properties when they exist

Repository: cordova-android
Updated Branches:
  refs/heads/master 395081803 -> 1b4f5b13f


CB-8548 Use debug-signing.properties and release-signing.properties when they exist


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

Branch: refs/heads/master
Commit: 1b4f5b13f1286319d8c7e4976eefe2d7e00cc5cb
Parents: 3950818
Author: Andrew Grieve <ag...@chromium.org>
Authored: Wed Feb 25 14:16:29 2015 -0500
Committer: Andrew Grieve <ag...@chromium.org>
Committed: Wed Feb 25 14:16:29 2015 -0500

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


http://git-wip-us.apache.org/repos/asf/cordova-android/blob/1b4f5b13/bin/templates/project/build.gradle
----------------------------------------------------------------------
diff --git a/bin/templates/project/build.gradle b/bin/templates/project/build.gradle
index e316784..82fb04a 100644
--- a/bin/templates/project/build.gradle
+++ b/bin/templates/project/build.gradle
@@ -110,6 +110,12 @@ if (ext.cdvCompileSdkVersion == null) {
 if (ext.cdvBuildToolsVersion == null) {
     ext.cdvBuildToolsVersion = privateHelpers.findLatestInstalledBuildTools()
 }
+if (ext.cdvDebugSigningPropertiesFile == null && file('debug-signing.properties').exists()) {
+    ext.cdvDebugSigningPropertiesFile = 'debug-signing.properties'
+}
+if (ext.cdvReleaseSigningPropertiesFile == null && file('release-signing.properties').exists()) {
+    ext.cdvReleaseSigningPropertiesFile = 'release-signing.properties'
+}
 
 // Cast to appropriate types.
 ext.cdvBuildMultipleApks = !!cdvBuildMultipleApks;


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