fix: Configuration scripts modified to support Crashlytics props initialization.

This commit is contained in:
Alexander Marchuk 2016-03-22 12:33:14 +03:00 committed by Sergey Yershov
parent 920ea5a35a
commit 5ec4aa00ee
2 changed files with 7 additions and 2 deletions

1
.gitignore vendored
View file

@ -129,4 +129,5 @@ private.h
tools/android/mapswithme.keystore
tools/android/yota.keystore
android/secure.properties
android/fabric.properties
server

View file

@ -7,6 +7,7 @@ set -e -u
BASE_PATH=`dirname "$0"`
PRIVATE_HEADER="$BASE_PATH/private.h"
PRIVATE_PROPERTIES="$BASE_PATH/android/secure.properties"
PRIVATE_FABRIC_PROPERTIES="$BASE_PATH/android/fabric.properties"
SAVED_PRIVATE_REPO_FILE="$BASE_PATH/.private_repository_url"
TMP_REPO_DIR="$BASE_PATH/.tmp.private.repo"
@ -47,8 +48,7 @@ else
#define HOCKEY_APP_BETA_KEY ""
#define CRASHLYTICS_IOS_KEY ""
' > "$PRIVATE_HEADER"
echo '
ext {
echo 'ext {
spropStoreFile = "../tools/android/debug.keystore"
spropStorePassword = "12345678"
spropKeyAlias = "debug"
@ -59,6 +59,10 @@ ext {
spropYotaKeyPassword = "12345678"
}
' > "$PRIVATE_PROPERTIES"
echo 'apiSecret=0000000000000000000000000000000000000000000000000000000000000000
apiKey=0000000000000000000000000000000000000000
' > "$PRIVATE_FABRIC_PROPERTIES"
exit
fi
fi