Skip to content

Commit

Permalink
Preparing for release
Browse files Browse the repository at this point in the history
  • Loading branch information
dan-zx committed Nov 30, 2014
1 parent 42c3f61 commit 22d6a1b
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Expand Up @@ -36,4 +36,7 @@ proguard/
*.iws
.idea/
.gradle/
build/
build/

# Keystores
keystores/
10 changes: 10 additions & 0 deletions app/build.gradle
Expand Up @@ -15,6 +15,15 @@ android {
debug {
storeFile file("../keystores/debug.keystore")
}
release {
storeFile file("../keystores/release.keystore")
File propsFile = file("../keystores/secure.properties");
Properties props = new Properties();
props.load(new FileInputStream(propsFile))
storePassword props.getProperty("storePassword")
keyAlias props.getProperty("keyAlias")
keyPassword props.getProperty("keyPassword")
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
Expand All @@ -23,6 +32,7 @@ android {
buildTypes {
release {
runProguard false
signingConfig signingConfigs.release
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
Expand Down
2 changes: 1 addition & 1 deletion app/src/main/res/values/configs.xml
Expand Up @@ -2,6 +2,6 @@
<resources>

<string name="foursquare_client_id">B4BRRJR2DUYMKFHJEYFUF24QXWSJKA4XGMHOELJEQOW2XTAG</string>
<string name="google_maps_v2_api_key">AIzaSyAd-aJgCw96V97fR9ljOvUZhpdA0jZOvc8</string>
<string name="google_maps_v2_api_key">AIzaSyC0M1fZjX-VLg7E0nquzpjICZUYbofgk1c</string>

</resources>
Binary file removed keystores/debug.keystore
Binary file not shown.

0 comments on commit 22d6a1b

Please sign in to comment.