how to name my android package if I do not have a site
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 pers开发者_开发百科onal webpage whatsoever and am not a member of any organization. Open to all suggestions.
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
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>
精彩评论