Added the debug keystore manually, hope this fixes the travis build...

This commit is contained in:
Yair Morgenstern 2018-12-02 15:16:50 +02:00
parent a0cd3e4cbd
commit 87571ee333
3 changed files with 10 additions and 1 deletions

View file

@ -15,7 +15,6 @@ install:
before_cache:
- rm -f $HOME/.gradle/caches/modules-2/modules-2.lock
- rm -fr $HOME/.gradle/caches/*/plugin-resolution/
- keytool -genkey -v -keystore ~/.android/debug.keystore -storepass android -alias androiddebugkey -keypass android -dname "CN=Android Debug,O=Android,C=US"
cache:
directories:

View file

@ -24,6 +24,16 @@ android {
versionCode 169
versionName "2.10.8"
}
signingConfigs {
debug {
storeFile rootProject.file('debug.keystore')
keyAlias 'androiddebugkey'
keyPassword 'android'
storePassword 'android'
}
}
buildTypes {
release {
minifyEnabled false

BIN
debug.keystore Normal file

Binary file not shown.