Reputation: 4323
What is the Keystore files and why we need these files ? Also is it necessary to have a keystore files before publish our application in the android market ?
Please provide me some useful information regarding this .
Upvotes: 2
Views: 1197
Reputation: 128428
See there are 2 types of keystore files we can have while developing android app:
Note:
For example:
Here's an example of a Keytool command that generates a private key:
$ keytool -genkey -v -keystore my-release-key.keystore
-alias alias_name -keyalg RSA -keysize 2048 -validity 10000
More information you can read here: Signing Your Applications
Upvotes: 4