How we make Signed APK for google play store?

I have completed my android app and now wanted to publish it on android market. I have an account on google play store for android apps. But when tried to upload my apk file it gives error.

这是错误的细节

I have read many tutorials but fail to upload.

How to sign an android apk file


First Right Click On project And Click On export 在这里输入图像描述

And Then Follow Instruction

在这里输入图像描述


Have a look at to this developer link,

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

  • open your project in eclips
  • press right-mouse, tools (android tools?) - > export signed application (apk?)
  • go trough the wizzard:
  • make a new key-store. remember that password
  • sign your app
  • save it etc.

  • 在这里输入图像描述 If you are trying to export your signed apk then you should go with.

    Project -> Export -> Export Signed Apk -> Go to Wizard -> Create New Keystore -> Create Password(Remember it) -> Fill Info and Give alias name for your app -> Sign your app ->Finally Save it or finish it.
    

    You have to use Zip align tool which is allocated in tools folder of SDK.

    You should use this way in your command prompt at where your zip align tool path is required.

    zipalign [-f] [-v] <alignment> infile.apk outfile.apk
    

    Where infile.apk is your source file which is signed apk and outfile.apk is your destination file which is output file.. And you must use that signed output apk file and upload it on Google play.

    链接地址: http://www.djcxy.com/p/67446.html

    上一篇: Android以编程方式从Google Play下载应用程序?

    下一篇: 我们如何为Google Play商店签署APK?