Added the debug keystore manually, hope this fixes the travis build...
This commit is contained in:
parent
a0cd3e4cbd
commit
87571ee333
3 changed files with 10 additions and 1 deletions
|
@ -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:
|
||||
|
|
|
@ -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
BIN
debug.keystore
Normal file
Binary file not shown.
Loading…
Reference in a new issue