如何在不重构的情况下发布两个具有相同源代码但不同包名的Android应用程序
我正在寻找方法来发布两个具有相同源代码的 Android 应用程序,无需任何更改,但具有两个不同的包名称,无需重构。
我该怎么做?
I am looking for ways to release two android apps with same source code without any changes but with two different package name without refactoring.
How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您需要:
究竟是什么导致了问题?
You need to:
What exactly is causing a problem?
当您将包名称更改为 Refactor 但在 R 文件中不会使用包名称时,Android 市场会考虑 R 文件包名称。
更改 AndroidManifest.xml 文件中的包名称,现在 R 包名称将自动更改。现在将旧的 src 包名称更改为新的。确保活动映射正确。
when ever you change package name to Refactor but in R file will not package name so and android market consider R file package name.
Change package name in AndroidManifest.xml file now R package name will automatic change. now change old src package name new one. make sure activity is proper mapping.
是什么困扰着你?只需继续并使用不同的包名称来发布它即可。确保您也在代码中进行了适当的重构。
What is bothering you? Just go ahead and release it with different package names. Make sure you make suitable refactoring in the code as well.