Created
October 8, 2017 19:47
-
-
Save asif633/3684efb0f5cb7a45ec2e1beb26bedd53 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.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000 | |
jarsigner -verbose -sigalg SHA1withRSA -digestalg SHA1 -keystore my-release-key.keystore HelloWorld-release-unsigned.apk alias_name | |
./zipalign -v 4 HelloWorld-release-unsigned.apk HelloWorld.apk // inside build-tools | |
keytool -keystore formconnect.keystore -list -v // lists keystore properties |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment