我们如何为Google Play商店制作签名APK?

时间:2014-01-30 04:44:35

标签: android google-play android-install-apk

我已经完成了我的Android应用程序,现在想在Android市场上发布它。我在Android应用程序的谷歌游戏商店有一个帐户。但是当试图上传我的apk文件时,它会出错。

  

this is error details

我已经阅读了很多教程,但无法上传。

How to sign an android apk file

3 个答案:

答案 0 :(得分:2)

首先右键单击项目并单击“导出” enter image description here

然后按照说明

enter image description here

答案 1 :(得分:1)

查看此开发人员链接

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

  • 在eclips中打开您的项目
  • 按右键,工具(android工具?) - > export signed application(apk?)
  • 穿过wizzard:
  • 建立一个新的密钥库。记住密码
  • 签署您的应用
  • 保存等。

答案 2 :(得分:1)

enter image description here如果您要导出已签名的apk,则应该使用。

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.

您必须使用在SDK的 tools 文件夹中分配的 Zip对齐工具

您应该在命令提示符处使用这种方式,在那里需要zip对齐工具路径。

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

其中infile.apk是您的源文件,其中包含apk和 outfile.apk 是您的目标文件,它是输出文件..您必须使用该签名输出apk文件并将其上传到Google Play上。