Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How do I generate a "Keystore" for Google Play?

I am trying to figure out the Byzantine process for uploading an app to Google Play.

I'm using Phonegap's Applaud system for generating my app, and in order for me to create a "release build", I need to have generated a "Keystore".

However, when I look at Google's own Publishing Checklist, there is nothing on it about a "Keystore".

I found this answer here on Stack Overflow for generating a "Keystore", which theoretically should work on Ubuntu, which is what I'm using:

keytool –genkey –v –keystore just2try.keystore –alias someKindOfName –keyalg RSA –validity 10000

First, what exactly should I be putting in where it says someKindOfName? The name of my app?

In any case, when I run it, I get this response:

keytool error: java.lang.RuntimeException: Usage error, –genkey is not a legal command

I Googled for solutions, but the only ones I found were for Windows.

Can someone provide, or point to, a slightly more user friendly step by step guide for generating this "Keystore" thing I'm supposed to have? One with working comands for Ubuntu/Linux?

like image 316
Questioner Avatar asked Jul 12 '12 06:07

Questioner


People also ask

What is Google Play store key?

The Google Play License Key is a cryptographic key provided by Google for your app in the Play Store. Singular can use the Key to help validate information coming from Google and improve your protection from attribution fraud.

What is keystore in Android app?

The Android Keystore system lets you store cryptographic keys in a container to make it more difficult to extract from the device. Once keys are in the keystore, they can be used for cryptographic operations with the key material remaining non-exportable.


1 Answers

The command that you have provided for generating the keystore is correct i.e.

keytool -v -genkey -v -keystore just2try.keystore -alias someKindOfName -keyalg RSA -validity 10000

Please do the following. Do not copy it, since I believe the error that you are seeing it related to some special characters. Type the whole thing as is in your command prompt or shell.

The just2try.keystore is any name for your Java based keystore file. You can select any name as you have done or give it some name that you know you can identify the keystore file with.

Finally, keep in mind that a keystore is like a collection of keys, where each one is identified by a name or an alias. So you should pick an alias that you know identifies the specific key. Examples : myorgkey, myandroidappkey, etc.

In case, you forget what alias' are present in the keystore, you can always use the -list command to see all the keys in the keystore. Example : keytool -v -list -keystore just2try.keystore

like image 60
Romin Avatar answered Oct 01 '22 12:10

Romin