curioustechizen
02/06/2020, 8:31 AMdomain
modules are all pure kotlin modules so they cannot inadvertently depend on Android classes)
2. Build performance (only recompile modules that need to)
Looks like 1. can be achieved with sourceSets because you can declare dependencies for each sourceSet independently. It will require a bit of discipline because the gradle module might be for example com.android.library
but it is doable.
Are there any docs about build performance with sourceSets that I should be aware of?Kris Wong
02/06/2020, 1:05 PMKris Wong
02/06/2020, 1:05 PMcurioustechizen
02/06/2020, 1:20 PM