Package conflict while publishing similar apps(发布类似应用时包冲突)
问题描述
我需要在 android 市场上发布两个功能相似且使用相似代码库的应用程序.这些应用程序唯一不同的地方是客户端特定的图标和一些字符串.
I need to publish two applications in android market which are similar in functionality and uses similar code base. The only places where these apps differ is client specific icons and some strings.
在尝试发布时,我的应用似乎遇到了包冲突.我应该怎么做才能避免包冲突.我在网上做了一些搜索,看起来我必须更改我的类的基本包,这听起来很奇怪.我还有其他选择吗?
When trying to publish, it looks like my apps are getting package conflict. What should I do to avoid package conflict. I did some search on net and it looks like I have to change base package of my classes which just sounds weird. Is there any other option that I am missing.
推荐答案
应用由包名标识.因此包名需要是唯一的.这就是为什么每个人都使用一些域名来创建一个独特的包(域也是唯一的).
The app is identified by the package name. Therefor the package name needs to be unique. Thats why everybody uses some domain names for that to create a unique package (domains are unique, too).
我的包裹看起来像:
org.shufflecity.android;
org.shufflecity.server;
您还可以为您拥有的每个客户端添加一个子包:
You can also add a subpackage for each client you have:
org.shufflecity.clientname.android
这应该可以解决问题...
That should do the trick...
这篇关于发布类似应用时包冲突的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:发布类似应用时包冲突
基础教程推荐
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01