Android Studio - Company Domain Name
Asked Answered
P

1

53

In Android Studio when you create a new project, you are prompted to put down a domain name.

I already know that you can make one up but what if you want to distribute your app on the Google Play store? Do I need to buy a web domain just to distribute my app even if I will never use my domain?

Plata answered 16/5, 2015 at 1:34 Comment(0)
C
70

No you don't need to buy a domain name to distribute your app. The domain name is used by Android Studio to generate a package name. Your package name is just a unique identifier for your application in the Google Play Store. It can be anything you want as long as it is unique. Generally, we use reverse domain names like com.something. or org.something. structure for naming java packages. You can read more about it here.

Concomitance answered 16/5, 2015 at 1:38 Comment(2)
Recently I tried to publish an app in play store and I had to change my package name so that it does not start with com.example. Therefore package name cannot be anything.Dion
It can be anything you want as long as it is unique.Concomitance

© 2022 - 2024 — McMap. All rights reserved.