Madalin Valceleanu
12/04/2019, 8:17 AMMichal Harakal
12/04/2019, 9:37 AMMadalin Valceleanu
12/04/2019, 9:40 AMMichal Harakal
12/04/2019, 9:49 AMMadalin Valceleanu
12/04/2019, 9:54 AMbuildSrc/commons/kotlin-library.gradle.kts
is a base to create such modules. But for the moment isn’t being used.:commons
module have reusable logic and share it with the every feature with the reason of not duplicating code and making the project more maintainable.Michal Harakal
12/04/2019, 10:07 AMMadalin Valceleanu
12/09/2019, 9:11 AMapp -> features
is established indirectly by dynamicfeature. And is necessary for have access to navigation graph. In the other hand, the features -> app
relationship is used for these reasons:
1). Have access to coreComponent initialised on application. This happens because the AppComponent depends on CoreComponent.
2). The app defines the styles, this way you could easily have 2 applications with different styles.dynamic-features
is different allowing you to have this graphMichal Harakal
12/09/2019, 10:49 PM