diff options
author | Allan Wang <me@allanwang.ca> | 2018-02-16 21:51:02 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-02-16 21:51:02 -0500 |
commit | fec23276e8290d4600ef79c54b5fcb00673daa83 (patch) | |
tree | c1e7710e91b4152bf40f736294aef12a635535b2 /app/build.gradle | |
parent | d68ea6d7eb8cadf687308fa3204386b79df0556b (diff) | |
download | frost-fec23276e8290d4600ef79c54b5fcb00673daa83.tar.gz frost-fec23276e8290d4600ef79c54b5fcb00673daa83.tar.bz2 frost-fec23276e8290d4600ef79c54b5fcb00673daa83.zip |
Update/misc (#728)
* Update basic agent check; fixes #714
* Disable swipe on long click
* Remove duplicate code
* Update dependencies
* Update dependencies 2
* Add debug keystore
* Update versions
* Fix duplicate notification
* Fix duplicate notification sound; addreesses #725
* Update changelog
* Clean up
Diffstat (limited to 'app/build.gradle')
-rw-r--r-- | app/build.gradle | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle index 08556f9e..3c9ceaa0 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -77,6 +77,13 @@ android { } } + debug { + storeFile file("../files/debug.keystore") + storePassword "debugKey" + keyAlias "debugKey" + keyPassword "debugKey" + } + test { storeFile file("../files/test.keystore") storePassword "testkey" @@ -91,6 +98,7 @@ android { shrinkResources false applicationIdSuffix ".debug" versionNameSuffix "-debug" + signingConfig signingConfigs.debug resValue "string", "frost_name", "Frost Debug" resValue "string", "frost_web", "Frost Web Debug" ext.enableCrashlytics = false @@ -100,8 +108,8 @@ android { shrinkResources true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' applicationIdSuffix ".test" - signingConfig signingConfigs.test versionNameSuffix "-test" + signingConfig signingConfigs.test resValue "string", "frost_name", "Frost Test" resValue "string", "frost_web", "Frost Web Test" } |