Created
May 11, 2021 09:21
-
-
Save debianmaster/98f81df53a99019fd15128e4716adb8c to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
``` | |
keytool -genkey -v -keystore my-release-key.jks -keyalg RSA -keysize 2048 -validity 10000 -alias my-alias | |
curl -o app.apk -L https://github.com/appium/sample-apps/blob/master/pre-built/selendroid-test-app.apk?raw=true | |
zipalign -v -p 4 app.apk app-aligned.apk | |
apksigner sign --ks my-release-key.jks --ks-pass pass:"test123" --out app-release.apk app-aligned.apk | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment