与发布在Play商店不同的名称相同的应用程序应用程序、商店、不同、名称

2023-09-08 00:06:35 作者:阳光透过指缝ミ看记忆模糊

我知道这在技术上是可能把相同的应用进入App Store有2几乎相同的APK(不同的包名和头衔),虽然可能有点狡猾的 - 我想这不会是谷歌所允许的,但我不看不到他们的TS&放任何东西;铯禁止这种

I know it is technically possible to put the same application into the app store with 2 almost identical APKs (different package names and titles), although probably a bit dodgy - I imagine this would not be allowed by Google, but I don't see anything in their Ts & Cs that prohibit this

https://play.google.com/about/developer-distribution- agreement.html

例如。 我的酷应用程序免费和awesomest应用试验

E.g. "My cool app free" And "The awesomest app trial"

问题的:难道这允许

原因的:一位同事和我辩论的标题和下载的说明的效果(根据不同的索引/用户搜索),并想知道如果人们曾经发布的游戏/应用程序与到2个不同的人看看哪些是比较成功的。

Reason: A colleague and I were debating the effect of titles and descriptions of downloads (based on different indexes/user searches) and wondering if people ever post a game/app with 2 different ones to see which is more successful

推荐答案

您可以的,如果应用程序的包名是不同的,如你所说。这是与试用和付费版应用程序经常做。关于你提到的问题,我们现在所拥有的这是同一应用程序的不同品牌版本大约6应用程序在谷歌播放。这意味着,他们有自己的包名,闪屏,以及一些数据库的数据,但应用程序是真的一样。到目前为止,我们并没有得到与谷歌任何麻烦,所以我会说这是可能的。

You can if the package name of the app is different, as you said. This is done quite often for apps with trial and paid version. Regarding your question, we have right now around 6 apps in Google Play which are different branded versions of the same app. This means, they have their own package name, splash screen, and some database data, but the app is really the same. So far we didn't get any trouble with Google, so I would say it's possible.

仅供参考,如果你有兴趣做类似的事情,在你的应用程序的可维护性方面的最佳选择,包括在使用的 Android的库的项目。

Just for reference, in case you are interested in doing something similar, the best option in terms of maintainability of your app, consists in using an Android library project.

基本上你的机器人库选项,在Eclipse中选中一个主的大项目。你把所有的主要code那里。 在另一方面,你创建链接到库中另外两个项目。他们只需要他们的manifest.xml和一些活动来调用库的主要活动。如果你想发布在谷歌播放这两个应用程序的包名必须是不同的。

Basically you have one main big project with the "Android Library" option checked in Eclipse. You have all the main code there. On the other hand, you create two additional projects linked to your library. They will just need their manifest.xml and some activity to call the main activity of the library. Their package names must be different if you want to publish both apps in Google Play.

此外,您可以覆盖一些资源为每个项目。举例来说,你可以在/ RES /值表明项目是否是一个审判或付费版本,与他们不同的值一个布尔值。然后,在库中,你可以检查这个布尔,以显示广告,如果它是一个试用版。 你可以做的另一种有用的东西是使用自定义启动画面的每一个应用程序,由具有不同的图像资源,在每一个项目中使用相同的名称。

Additionally, you can override some resources for every project. For instance, you could have a boolean in /res/values indicating whether the project is a trial or paid version, with different values for them. Then, in the library you could check this boolean to show advertisements if it's a trial version. Another useful thing you can do is using a custom splash screen for every app, by having different image resources in every project with the same name.