.
├── app # connects all of the modules together
│ ├── src
│ ├── build.gradle
├── common (library)
│ ├── src # common utilities and resources shared by multiple modules
│ ├── build.gradle
├── onboarding (library)
│ ├── src # onboarding specific source code & resources
│ ├── build.gradle
├── marketplace (library)
│ ├── src # marketplace specific source code & resources
│ ├── build.gradle
├── checkout (library)
│ ├── src # checkout specific source code & resources
│ ├── build.gradle
└── build.gradle