Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

In playstore can we have two apps with same name with different package - Android

I've upload application on google play store with my own package name.

Later client want to change the package name.

I've searched but i got that, not able to change package name after publish.

what can i do for this?

and

In playstore can we have two apps with same name with different package?

like image 505
RVG Avatar asked Feb 04 '14 07:02

RVG


People also ask

Can two apps have the same package name?

No. It is because you are querying for activities, not applications. An application can have zero, one, two, or a million activities that will respond to an ACTION_MAIN Intent .

Can I upload same app with different package name?

First: We suggest you don't upload the same application to Google Play multiple times. You will run the risk of violating Google Play's repetitive content policy - described here. If you are a developer handling multiple applications with different functionality, then each application must use a unique package name.

Can two Android apps have the same name?

You can't have multiple apps with the same app id. The name string is more superficial, it isn't used as a unique key in the app stores - it's more of a visual thing client side.

Can apps have similar names?

You get more options and can even take names that have already been taken by others. As Android allows multiple apps of the same name, one might not necessarily need to reserve the name, but just use it anyway. However, we suggest that you avoid cloning or plagiarism and find a name unique to your brand.


2 Answers

In playstore can we have two apps with same name with different package?

Yes, you can have multiple apps in the play store with the same display name, but they have to have different package names (and the play store won't actually allow a second app with the same package name as another even to be uploaded)

what can i do for this?

  • You cannot change the package name.
  • You can change the package name in your dev environment and upload it as a new app. All your ratings and download numbers will not transfer.
like image 155
petemyron Avatar answered Oct 24 '22 00:10

petemyron


You can't. As stated here, seems that's one of the few things you cannot do.

Choose a good package name

Make sure you choose a package name that is suitable over the life of your application. You cannot change the package name after you distribute your application to users. You can set the package name in application's manifest file. For more information, see the package attribute documentation.

like image 38
nKn Avatar answered Oct 24 '22 00:10

nKn