Skip to content

Commit

Permalink
Merge pull request #297 from PojavLauncherTeam/app-signing
Browse files Browse the repository at this point in the history
App signing
  • Loading branch information
WesleyVanNeck authored Sep 3, 2020
2 parents f85860f + 7ea0ec1 commit 1d605bd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ script:
- ./gradlew test

deploy:
provider: releases
provider: release
api-key: $GITHUB_API_KEY
file: $TRAVIS_BUILD_DIR/app/build/outputs/apk/debug/app-debug.apk
file: $TRAVIS_BUILD_DIR/app/build/outputs/apk/release/app-release.apk
skip_cleanup: true
name: PojavLauncher_DevBuild-$TRAVIS_COMMIT
body: Automatic build of PojavLauncher from the latest source commit ($TRAVIS_COMMIT) built by Travis CI on $(date +'%F %T %Z').
Expand Down
4 changes: 4 additions & 0 deletions keystore.properties
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
storePassword=store-pass
keyPassword=key-pass
keyAlias=alias
storeFile=test-keystore.jks
3 changes: 3 additions & 0 deletions test-keystore.jks
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
keytool -genkey -keystore test-keystore.jks -keyalg RSA -keysize 2048 -validity 10000 -alias alias -storepass store-pass -keypass key-pass -dname "CN=a" -noprompt
# keytool is inside "[...]/Android/Android Studio/jre/bin" and "$JAVA_HOME/bin"
# there are many variations of this command that also generate a valid test-keystore.jks

0 comments on commit 1d605bd

Please sign in to comment.