Currently, I have an app that contains three features, which is published on the store.
I would like to create a separate app for each feature, but I don't want to copy and paste, since I will then have to maintain multiple codebases.
I have read about Product Flavors, which can be used to create different applications from the same codebase. How do I go about creating four separate apps, while maintaining only one codebase?
Specifically: where do I place the source of the main app that contains all the features?
Can anyone suggest how I can organise my code?