Alexis Jiménez
01/21/2024, 11:02 PMPablichjenkov
01/22/2024, 12:30 AMapi(compose.uiTooling)
api(compose.preview)
SanjayKarki
01/22/2024, 5:17 AMPablichjenkov
01/22/2024, 5:24 AMPablichjenkov
01/22/2024, 5:25 AMbuildFeatures {
compose = true
}
composeOptions {
kotlinCompilerExtensionVersion = "1.5.4"
}
Pablichjenkov
01/22/2024, 5:26 AMSanjayKarki
01/22/2024, 5:27 AMMcEna
01/22/2024, 4:01 PMAlexis Jiménez
01/23/2024, 6:24 PMPablichjenkov
01/23/2024, 6:31 PMapi
allows you to apply the dependencies in the common module and export it to consumer modules, so you don't write it twice or triple. Using implementation
you will have to include the dependency in common module and also in each consumer module, it doesn't expose transitive dependencies.Alexis Jiménez
01/23/2024, 7:54 PM