what are the main differences between android modules and flavors?
From module definition https://developer.android.com/studio/projects/add-app-module.html
Modules provide a container for your app's source code, resource files, and app level settings, such as the module-level build file and Android manifest file. Each module can be independently built, tested, and debugged.
But I could say the same thing about flavors.
Can someone point out the key differences between these two?
Modules are completely different sets of files. Flavors can share most of the code or configs and have only minor differences.