Reputation: 1
I've recently started creating an app for Android using SDK.Could anyone please tell me how to get Package name without any Website.I don't won any website ? Any reply is greatly appreciated.
Upvotes: 0
Views: 92
Reputation: 11439
You don't necessarily need a website to assign a package name. It is just a java standard. Package names can really be any [a-Z0-1] name you want, so long as it is unique to the dependencies you are using, even then, the only thing that needs to be unique is the class names.
Upvotes: 2