git.cweiske.de
/
louyapi.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
445b1e0
)
Load "signingconfigfile" if it has been defined in gradle.properties
author
Christian Weiske
<
[email protected]
>
Fri, 3 Jun 2022 18:57:03 +0000
(20:57 +0200)
committer
Christian Weiske
<
[email protected]
>
Fri, 3 Jun 2022 18:57:03 +0000
(20:57 +0200)
build.gradle
patch
|
blob
|
history
diff --git
a/build.gradle
b/build.gradle
index ec8dcb726928b948607c66162bcd0874cfc3c948..b66821d766513685639d089ce65194e1db4562e9 100644
(file)
--- a/
build.gradle
+++ b/
build.gradle
@@
-32,3
+32,8
@@
android {
}
compileSdkVersion 16
}
+
+if (project.hasProperty("signingconfigfile")
+ && new File(project.property("signingconfigfile")).exists()) {
+ apply from: project.property("signingconfigfile");
+}