How to create an android app's Keystore file ?

How to create an android app's Keystore file ?

Steps to create an android app's Keystore file

Step 1: In order to create an Android Keystore file, you must first make sure you have Java JDK installed. You will be using the keytool command that is available in the JDK.
(Download Java JDK)

Step 2: Type in the following in the command line...
keytool -genkey -v -keystore file.keystore -alias YOUR_ALIAS_NAME -storepass YOUR_ALIAS_PWD -keypass YOUR_ALIAS_PWD -keyalg RSA -validity 36500

Step 3: Make sure to replace YOUR_ALIAS_NAME and YOUR_ALIAS_PWD with your unique alias name and password.

Step 4: Hit Enter. You will be shown a set of sequential questions to answer in the command line prompt.

Step 5: Place your answer and hit Enter for each question.