Reputation: 103
I've read much about android package naming conventions, but still have no idea what I should name my packages if I don't have any personal webpage whatsoever and am not a member of any organization. Open to all suggestions.
Upvotes: 10
Views: 3800
Reputation: 1071
What about simply using your name? (In camelCase, as seems to be the Java convention) I assume that's what you'd be publishing your apps under (as you're not a member of any organisation), so why not name your package com.myname.myapp?
Edit: see comments
Upvotes: 2
Reputation: 3177
You could do something like
com.myapp."Name of your app"
or anyhing of this nature. Just make sure its something you want to stick with. Check here: This may be of help
Hope this helps
Another possible scheme if you have a company:
com.<name-of-your-company>.android.<name-of-the-app>
Upvotes: 0