是否可以在Apple Store和Play商店中将当前应用更改为较新的应用?

问题描述 投票:0回答:1

是否可以将Apple Store和Play Store中的应用更改/更新为新应用?我已经在Apple Store和Play Store中发布了一个应用程序,并且使用Ionic v1制作了它们,并且在Uiwebview(https://developer.apple.com/news/?id=12232019b

上遇到了此问题

所以我打算使用Ionic v4制作一个新的,并提交给我,因为Ionic v1可以吗?如果是,该怎么办?我是否需要使用相同的.keystore文件重新提交?

ios ionic-framework google-play app-store ionic4
1个回答
0
投票

您绝对可以在Play商店或App Store上发布已发布应用的更新。

请确保程序包名称相同

对于Play商店:

  • 在config.xml文件中增加android-versionCode。 PlayStore使用版本代码来识别是否有新的更新。
  • 使用命令ionic cordova build android --prod创建生产版本
  • 使用与用于签署原始ionic-1应用程序的发行版相同的密钥库文件。

我更喜欢使用Android Studio创建发布版本。只需将<your ionic project root>platform/android/文件夹导入Android Studio。然后,您可以按照本指南创建发行版本:https://developer.android.com/studio/publish/app-signing

enter image description here

对于iOS:

© www.soinside.com 2019 - 2024. All rights reserved.