Publishing certain modules with Jitpack
I’m following Clean Architecture in order to publish some libraries.
Example: SimpleCalculator
and AdvancedCalculator
libraries.
They both share the same domain
logic, so they can share the domain
module, thus, it is included as an implementation in their build.gralde
files.
The project also include other modules such as data
, di
, core
… but those are just modules needed to build SimpleCalculator
and AdvancedCalculator
.
Important mention is for example, data
is an Android Module
but, for example, domain
is just a pure JVM library.