Android 应用发布问题
Android app releases issue
目前我在 Play 商店中有一个混合应用程序,最近我通过改进和添加更多功能为此开发了一个本机应用程序。
所以我想在下次更新时推出它
我有以下问题:
- 我是否必须使用具有相同密钥存储文件的新应用程序对此进行签名?
- 我必须使用相同的包名称吗?
- 更改版本号就够了吗?
经过一番搜索,我找到了发布应用程序的程序
Google 但它没有解决我的疑虑,所以有人可以解释如何发布应用程序的过程并消除我的疑虑。
请在下面找到我的答案:
do i have to sign this using the new app with same key-store file ?
Yes, if you want to publish update of existing app, won't allow you to publish if different key-store used
do i have to use same package name ?
Yes, if you want to publish update of existing app, will be considered new app otherwise
will changing version number enough ?
Yes but version number should be greater than the version number of existing app
只需将版本号更改为 +1 并使用相同的包 google Play 商店将使用此 apk。但您必须声明目标版本和编译版本相同或已更新。
If you have same key and package name is same play store will take your Apk.
update your version number and put target and build version same or latest.
目前我在 Play 商店中有一个混合应用程序,最近我通过改进和添加更多功能为此开发了一个本机应用程序。
所以我想在下次更新时推出它
我有以下问题:
- 我是否必须使用具有相同密钥存储文件的新应用程序对此进行签名?
- 我必须使用相同的包名称吗?
- 更改版本号就够了吗?
经过一番搜索,我找到了发布应用程序的程序 Google 但它没有解决我的疑虑,所以有人可以解释如何发布应用程序的过程并消除我的疑虑。
请在下面找到我的答案:
do i have to sign this using the new app with same key-store file ?
Yes, if you want to publish update of existing app, won't allow you to publish if different key-store used
do i have to use same package name ?
Yes, if you want to publish update of existing app, will be considered new app otherwise
will changing version number enough ?
Yes but version number should be greater than the version number of existing app
只需将版本号更改为 +1 并使用相同的包 google Play 商店将使用此 apk。但您必须声明目标版本和编译版本相同或已更新。
If you have same key and package name is same play store will take your Apk. update your version number and put target and build version same or latest.