如何在不重构的情况下发布两个具有相同源代码但不同包名的Android应用程序

发布于 2024-12-02 21:31:48 字数 80 浏览 2 评论 0原文

我正在寻找方法来发布两个具有相同源代码的 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

默嘫て 2024-12-09 21:31:48

您需要:

  1. 重构代码以在 IDE(例如 Idea 或 Eclipse)中更改包名称
  2. 在 AndroidManifest.xml 中更改包名称
  3. 构建应用程序的标志。

究竟是什么导致了问题?

You need to:

  1. Refactor code to change package name in a IDE (like a Idea or Eclipse)
  2. Change package name in AndroidManifest.xml
  3. Build an sign the application.

What exactly is causing a problem?

柠檬色的秋千 2024-12-09 21:31:48

当您将包名称更改为 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.

紙鸢 2024-12-09 21:31:48

是什么困扰着你?只需继续并使用不同的包名称来发布它即可。确保您也在代码中进行了适当的重构。

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文