forked from google/iosched
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Parameterise the keystore location so it can be overridden by environ…
…ment level or command line properties
- Loading branch information
Showing
2 changed files
with
32 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# | ||
# Properties for the build which can be overridden locally. | ||
# | ||
# This allows build keys to be set where the app is being built in | ||
# a gradle.properties override. See; | ||
# | ||
# http://www.gradle.org/docs/current/userguide/tutorial_this_and_that.html#sec:gradle_properties_and_system_properties | ||
# | ||
# for more information on the overriding system. | ||
# | ||
|
||
# The store file location is relative to the module base, and so needs to go | ||
# up one level of the directory hierarchy to get to the project root. | ||
|
||
iosched14_android_debugkey_storefile = ../android/debug.keystore | ||
iosched14_android_debugkey_storePassword = android | ||
iosched14_android_debugkey_keyAlias = androiddebugkey | ||
iosched14_android_debugkey_keyPassword = android | ||
|
||
iosched14_android_releasekey_storefile = ../android/debug.keystore | ||
iosched14_android_releasekey_storePassword = android | ||
iosched14_android_releasekey_keyAlias = androiddebugkey | ||
iosched14_android_releasekey_keyPassword = android | ||
|