在市场上升级 Android 应用程序时出现问题
我在谷歌市场上传了一个android应用程序 现在我想在构建中添加一些功能并升级版本,但我无法这样做,因为当我尝试使用相同的密钥库创建签名的应用程序时,我收到错误:密码不正确或密钥库被篡改并且因此我无法使用相同的密钥库签署应用程序。
所以现在我想到取消发布应用程序并将该应用程序的新版本作为新应用程序上传,现在我收到应用程序的包名称已存在的错误。
请引导我严重困惑密钥库是相同的,我输入的密码也相同,我什至将其存储在邮件中。
I uploaded an android application in google market place
Now i want to add some features in the build and upgrade the version but i am not able to do so since when i try to create a signed appplication with the same keystore i get the error : the password is incorrect or the keystore is tampered and hence i am not able to sighn the application with the same keystore.
So now i thought of unpublishing the application and uploading the new version of this application as a new application now i get the error that the package name of the application already exists.
Please guide me seriously confused the keystore is the same one and the password i am entering is also the same i even stored it in a mail.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
2种方法:
my.package
将其更改为your.package
或其他)2 ways:
my.package
change it toyour.package
or whatever)我以前也遇到过类似的问题,而且很烦人。因为您无法从市场上删除该应用程序。无论如何,如果错误消息显示
密码不正确或密钥库被篡改
,如果是类似的密钥库,则很可能是密码错误。 (如果您要花时间升级密钥库密码,请不要忘记它。)如果您忘记了密码,则必须上传另一个具有不同包名称的应用程序。也为此创建一个新的密钥库。
我所做的就是记录下我的密钥库密码,这样我就不会忘记并且必须再次上传新的应用程序和密钥库。
干杯
I had the similar problem before and it was irritating. Because you can't remove the application from the market. Anyway, if the error message shows
The password is incorrect or the keystore is tampered
, Most probably it's an incorrect password if it's the similar keystore. (Never forget the keystore password if you're gonna spend time upgrading it.)If you are unable to remember the password, then you will have to upload another application with a different package name. Create a new keystore for that too.
What I do is I record down my keystore passwords so I do not forget and have to upload new applications and keystores again.
Cheers