Summary
I am working on extending my Android Library, and in the library I want to have a directory that has the ability to add many different and working sample Android apps in their own modules.
I have already created one sample app that I would like to move and rename I guess; however, I need the ability to add other ones easily.
Previous Tries
These two solutions that allow to create a module exactly how I want structurally; however, these solutions will only create a standard java module. I specifically need an Android App module.
Another option that I have tried was to directly use Android Studio's New Module Wizard. This option allows me to create an Android App Module; however, it will not put it in the correct structure.
What I have
Project Module
|- Android Library Module
|- "samples" Android App Module (Complex)
What I want
Project Module
|- Android Library Module
+- "samples" Directory
|- "sample-basic" Android App Module
|- "sample-complex" Android App Module
So what am I missing? I have seen other git repos that have Android app modules inside of subdirectories. So it appears to be possible.