Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android studio module naming convention

I am looking for a thorough android studio module naming convention suggestion.

If the name of the module is app free what is the best name convention for that?

  • app-free

  • appfree

  • app_free

  • appFree
like image 368
Saeed Masoumi Avatar asked Jul 02 '15 08:07

Saeed Masoumi


1 Answers

There is no convention for android module names.

But since the packageNames are all lowercase and dot-separated, I'll used appfree.

BTW if you want to build a "free" version of something, take a look at Gradle' flavors instead of modules.

like image 146
shkschneider Avatar answered Sep 21 '22 01:09

shkschneider