nik
nik

Reputation: 8745

Alternate Android package naming convention

Every tutorial that I've read so far says that package name should be in reverse order of you domain. But what if I do not have a domain and want to publish an app in the market. What alternate package naming convention can I use?

Upvotes: 1

Views: 397

Answers (1)

Dave Newton
Dave Newton

Reputation: 160191

Whatever you want; it's arbitrary.

Package naming is all about preventing conflicts, and creating logical groups of functionality. Not distributing your library? Just name it something reasonable.

"Not having a domain" isn't really the point--the reason that's a recommended practice is because they're unique to an organization, therefore unique across libraries, and unlikely to create conflicts.

Upvotes: 1

Related Questions