Can I somehow tell the android studio to NEVER build my submodules? I split my applications into many modules and reused modules between my applications. I have 10+ modules for the application ...
So, for the sake of speed, I want to tell the android studio to check the dependencies of my main project and only build my main project and NEVER check my modules or do anything with them unless I force it using a clean build.
Is it possible? If I turn on all moduels through a compiled jar, Android-studio will act just like that. I want the same behavior, even if I do not turn on the banks, but add modules to my project.
Question
Can I get the desired behavior only if I compile my modules myself and add banks to my project or can I somehow work with the modules, as well as with the ability to make changes to my modules from my main project and force the modules to recompile through clean build or similar?
source
share