Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio - Company Domain Name

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?

like image 974
David Read Avatar asked May 16 '15 01:05

David Read


People also ask

What is company domain in Android Studio?

The company domain name is used to uniquely identify your app. Thus, even if two different companies create Android apps with the same name, you can still see which is which because their company domain names will be different. If you have a company, type in the company's domain name in reverse (e.g. com. jenkov ).

Is Android Studio owned by Google?

Android Studio is the official integrated development environment (IDE) for Google's Android operating system, built on JetBrains' IntelliJ IDEA software and designed specifically for Android development.

Do I need a domain for my app?

Do You Have a Domain Name? Google Apps requires a domain name to associate the apps with and you need to verify you are the owner or administrator. A domain name is a unique name for your website, often looking something like this: mycompany.com.

Is Android Studio based on Java?

Android Studio is the official integrated development environment (IDE) for Android application development. It is based on the IntelliJ IDEA, a Java integrated development environment for software, and incorporates its code editing and developer tools.


1 Answers

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.

like image 138
Bidhan Avatar answered Oct 11 '22 11:10

Bidhan