开发者

how to name my android package if I do not have a site

开发者 https://www.devze.com 2023-03-29 06:35 出处:网络
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 a

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>
0

精彩评论

暂无评论...
验证码 换一张
取 消