-1

I want to make an app which i want to publish to the play store.

While creating the app it requires a package name which is something like com.example.myapp

On doing some research i came to know that it specifies a domain name and is used to uniquely identify our app on play store.

I wanted to know how these packages name work and how do i get the assurity that no other app on play store wont have the same package name as mine.

Also usually when we start android studio it gives a package name com.example.mpapplication. What happens if i try to publish the app with this package name?

droid

Talha Israr
  • 654
  • 6
  • 17

1 Answers1

2

Package name uses a “reverse DNS” convention in which the domain name is reversed and suffixed with further identifiers. This convention keeps package names unique and distinguishes applications from each other on a device and on Google Play.

You don't need to own a .com domain in order to release apps on Play store. It is just a standard. So, Pick some unique name and suffix it with "com. "

If you want to check whether the name you picked is unique or not, simply add it to the following url : https://play.google.com/store/apps/details?id=com.vspinsight.appik.mehangai

Here id=" " is the package name of my app. If the url takes you to an app, that means the package name is already taken.

Pankaj Sati
  • 2,441
  • 1
  • 14
  • 21