创建新的 Android 项目以替换旧项目但能够提交给 Google Play
Create new Android project to replace old one but able to submit to Google Play
我已将我的一个旧项目从 eclipse 迁移到 android studio (Ubuntu),但取得了一些有限的成功。
我现在想在 Android studio 中创建一个新项目,拖入 类 并边做边重构它们。
然后我想将新的 Android studio 项目提交到应用商店,并使用正确的签名密钥升级到我的旧项目。
我的问题是我必须在新项目中保持与旧项目相同的什么才能做到这一点?
Warning: Keep your keystore and private key in a safe and secure
place, and ensure that you have secure backups of them. If you publish
an app to Google Play and then lose the key with which you signed your
app, you will not be able to publish any updates to your app, since
you must always sign all versions of your app with the same key.
如果我做对了,您只需要在导出时使用密钥库中的相同密钥进行编译。当然你需要在上传之前增加清单中的版本号,就像定期更新一样。
如果您需要有关如何使用 android 工作室签署应用程序的更多信息,请查看 google developer guide
保持以下不变:
您的密钥库文件、别名和密码。
您的应用程序包名称。
别忘了将您的版本代码更新到较新的版本。
我已将我的一个旧项目从 eclipse 迁移到 android studio (Ubuntu),但取得了一些有限的成功。
我现在想在 Android studio 中创建一个新项目,拖入 类 并边做边重构它们。
然后我想将新的 Android studio 项目提交到应用商店,并使用正确的签名密钥升级到我的旧项目。
我的问题是我必须在新项目中保持与旧项目相同的什么才能做到这一点?
Warning: Keep your keystore and private key in a safe and secure place, and ensure that you have secure backups of them. If you publish an app to Google Play and then lose the key with which you signed your app, you will not be able to publish any updates to your app, since you must always sign all versions of your app with the same key.
如果我做对了,您只需要在导出时使用密钥库中的相同密钥进行编译。当然你需要在上传之前增加清单中的版本号,就像定期更新一样。
如果您需要有关如何使用 android 工作室签署应用程序的更多信息,请查看 google developer guide
保持以下不变:
您的密钥库文件、别名和密码。
您的应用程序包名称。
别忘了将您的版本代码更新到较新的版本。