5

各位,

我已经使用 Sencha touch 2 成功制作了一个应用程序,它在我的 Android 设备上运行良好,也在平板电脑和模拟器上运行良好。但问题是无法在 Android Market 上上传 apk 文件,它显示错误:

.apk is not signed also validity year 50 Error in Google market -: 
Google Play does not accept apks signed with the debug certificate. 
Create a new certificate that is valid for at least 50 years.

我也更改了我的证书“配置”:“发布”,但没有取得任何成功。亲爱的,我也在分享我的整个配置文件。如果您在配置文件中发现任何错误,请告诉我。任何建议表示赞赏。预先感谢。

配置文件中的代码是-:

{
"applicationName":"navi",
"applicationId":"com.amit.navi",
"versionString":"1.0",
"iconName":"resources/icons/Icon~ipad.png",
"inputPath":"build/native",
"outputPath":"build/",
"configuration":"Release",
"platform":"Android",
"deviceType":"Universal",
"certificatePath":"C:/Documents and Settings/amit/.android/amit.keystore",

"certificateAlias":"alias_name",
"sdkPath":"C:/android-sdk",

"orientations": [
"portrait",
"landscapeLeft",
"landscapeRight",
"portraitUpsideDown"
]
}
4

1 回答 1

1

这是创建用于签署您的 apk 的密钥的指南。您当前已使用调试密钥为您的应用程序签名,需要使用 keytool(java 工具)生成一个新的,然后用它为您的 apk 签名。煎茶指南:http ://docs.sencha.com/touch/2-0/#!/guide/native_android

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

keytool 在你的 java 目录中

于 2012-07-26T01:08:53.870 回答