Skip to content

Instantly share code, notes, and snippets.

@sungitly
Created April 1, 2014 09:27
Show Gist options
  • Save sungitly/9910832 to your computer and use it in GitHub Desktop.
Save sungitly/9910832 to your computer and use it in GitHub Desktop.
Android Signning
// Generate a private key
keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
// View generated key store
keytool -list -v -keystore release.keystore
// Sign the application
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore my_application.apk alias_name
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment