Last active
April 27, 2019 11:12
-
-
Save tmwatchanan/8e8f44507bd909fa418106044365c033 to your computer and use it in GitHub Desktop.
Commands for creating debug key used in developing Android app
This file contains hidden or 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
| # to generate keystore | |
| keytool -genkey -v -keystore debug.keystore -storepass android -alias androiddebugkey -keypass android -keyalg RSA -keysize 2048 -validity 10000 | |
| # to get debug key | |
| keytool -list -v -keystore debug.keystore -alias androiddebugkey -storepass android -keypass android |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment