English 中文(简体)
你们能否在不同的市场账户中使用相同的一揽子申请名称?
原标题:Can you use the same application package name in different market account?

I already have a google developer account, but I would like to make a brand new google developer account for an app I m about to publish.

我能否在两个市场账户中使用相同的一揽子名称? 例如,如果我有谷歌开发商账户第1号,有共享包装名称的估价(例如 com.myawesomeapps.app1, com.myawesomeapps.app2)。

我只想问,因为我对这个新事物有不同的看法,但保留我的包裹名称,如果不可能,我不想支付出版商的费用。

提前感谢。

最佳回答

你们必须使用不同的包裹名称——你可以never改变包装名称。 如果你使用不同的包裹名称,你就会释放一个完全独立的口号。

我知道,在市场上不同的包装名称中,没有任何东西阻止你使用同样的substring

由于 com.myawesomeapps.ap3与 com.myawesomeapps.ap2不同,应处以罚款。

请注意,你的包裹名称必须是普遍的独一无二的(任何人永远不会使用),并可更改never。 改变包装名称最接近的是完全放弃包裹名称,开始使用新的包裹名称,但除了你在描述案文中所说的话外,在市场上不存在“联系”。

这个博客员额对包裹的名称做了更多的解释;它是一个比旧的,但AFAIK仍然准确:http://blog.javia.org/android- Package-name/

问题回答

在安伯市场出版时不可能这样做。 我们不能使用相同的组合名称,从同一账户或从任何其他账户中再提交。 一揽子名称对每项申请都是独一无二的,也不能从一个用户转到另一个用户。

你们需要使用不同的一揽子名称,用于新应用。 我有类似的要求,因此,对于新申请,我只使用不同的一揽子名称,用于一揽子申请的名称和发射器活动。 休息(活动、不成体系和其他整个手法)仍以旧的包裹名称为名,新上诉处的工作只是罚款。

您可以,但您必须改变格勒布档案和复制室。 Id

defaultConfig {
    applicationId  com.example.app1 
}

To

defaultConfig {
    applicationId  com.example.app2 
}

然后,你可以把它装上 go角。





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...