Skip to content

Commit

Permalink
Added the debug keystore manually, hope this fixes the travis build...
Browse files Browse the repository at this point in the history
  • Loading branch information
yairm210 committed Dec 2, 2018
1 parent a0cd3e4 commit 87571ee
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 1 deletion.
1 change: 0 additions & 1 deletion .travis.yml
Expand Up @@ -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:
Expand Down
10 changes: 10 additions & 0 deletions android/build.gradle
Expand Up @@ -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
Expand Down
Binary file added debug.keystore
Binary file not shown.

0 comments on commit 87571ee

Please sign in to comment.