Generate a keystore for an Android app in the Export Android Application wizard?

后端 未结 3 1048
误落风尘
误落风尘 2021-01-30 10:31

I\'m trying to export a signed Android application in Eclipse.

I think I\'m going in the right direction:

  • Right click on project > Android Tools
相关标签:
3条回答
  • 2021-01-30 11:02

    You should be able to create a keystore with the dialog, yes. After navigating to the folder you want to use, type a name in the 'File name:' field in the file browse window, e.g. sophie.keystore. Then you should be able to proceed.

    Alternatively, you can create it on the command line as described in the docs.

    The command looks like this:

    keytool -genkey -v -keystore my-release-key.keystore -alias alias_name -keyalg RSA -keysize 2048 -validity 10000
    

    for example:

    keytool -genkey -v -keystore ~/dcaunt.keystore -alias dcaunt -keyalg RSA -keysize 2048 -validity 10000
    
    0 讨论(0)
  • 2021-01-30 11:03

    If you have created an app right now with the sdk and adt plugin, like the hello world app, then you'll have to chose the debug.keystore file while exporting. The files is in c:/users/.../.android/debug.keystore, after that when asked for password.

    0 讨论(0)
  • 2021-01-30 11:15

    Step 1 : How to generate keystore in eclipse

    Step 2: Browse Directory and put filename.keystore and create password

    [Step 2: Browse Directory and put filename.keystore and create password]

    Step 3: Fill Expiry details and License detail

    2[Step 3: Fill Expiry details and License detail]3

    You are done!

    0 讨论(0)
提交回复
热议问题