Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Marchuk <alexm@maps.me>2016-03-22 12:33:14 +0300
committerSergey Yershov <yershov@corp.mail.ru>2016-03-23 16:59:24 +0300
commit5ec4aa00ee4d102b4b6990c915ffb346c027a441 (patch)
tree83ce0142cd8dfc2f1791136a0fef955c6477fe4e /configure.sh
parent920ea5a35a3d0815d101384594d9a205984dbd69 (diff)
fix: Configuration scripts modified to support Crashlytics props initialization.
Diffstat (limited to 'configure.sh')
-rwxr-xr-xconfigure.sh8
1 files changed, 6 insertions, 2 deletions
diff --git a/configure.sh b/configure.sh
index 6fffb2edde..183d051be9 100755
--- a/configure.sh
+++ b/configure.sh
@@ -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