Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save debianmaster/98f81df53a99019fd15128e4716adb8c to your computer and use it in GitHub Desktop.
Save debianmaster/98f81df53a99019fd15128e4716adb8c to your computer and use it in GitHub Desktop.
```
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