4

I'm trying to export my Android application from Eclipse, and so I'm stuck at the 2nd step where I need to create a new keystore. What should I put in the location field ?

Thanks for your advices.

Rob
  • 15,732
  • 22
  • 69
  • 107
  • possible duplicate of [How to sign an android apk file](http://stackoverflow.com/questions/4853011/how-to-sign-an-android-apk-file) – Praveenkumar Jul 19 '12 at 09:49
  • This is the answer: [How to sign an android apk file](http://stackoverflow.com/a/4853025/735675) – pixelscreen Jul 19 '12 at 09:47
  • Just follow the link below and you will be able to create keystore of you app. http://mobile.tutsplus.com/tutorials/android/publish-to-android-market/ – AkashG Jul 19 '12 at 10:06
  • possible duplicate of [How can I create a keystore?](http://stackoverflow.com/questions/3997748/how-can-i-create-a-keystore) – outis Jul 20 '12 at 09:49
  • here is nice and Easy tutorial. check it. [How to create Keystore file](http://androidhelpblog.blogspot.com/2013/10/how-to-create-key-store-file.html) – droidliveman Oct 26 '13 at 06:30

3 Answers3

12

I'm stuck at the 2nd step where I need to create a new keystore. What should I put in the location field ?

That location field is the location where you want to keep new keystore file and give name to keystore file.

enter image description here

Paresh Mayani
  • 127,700
  • 71
  • 241
  • 295
0

You have this official guide to achieve that,

http://developer.android.com/tools/publishing/app-signing.html

Iñigo
  • 12,723
  • 2
  • 31
  • 31
0

Go to terminal by typing cmd in seach and run command prompt.

In terminal write cd %JAVA_HOME%\bin it will take you to java bin directory.

Here you paste following line:

keytool -genkey -v -keystore e:\store-key.keystore -alias store-key-alias -keyalg RSA -keysize 2048 -validity 10000

It prompt you for your name and other things just give these things to terminal and password when it ask and your key file will be generated in E drive with the name of store-key.keystore

Muzaffar Mahmood
  • 1,688
  • 2
  • 17
  • 20