15 lines
395 B
Kotlin
15 lines
395 B
Kotlin
import com.guru.composecookbook.build.dependencies.addComposeOfficialDependencies
|
|
|
|
plugins {
|
|
/**
|
|
* See [common-compose-module-configs-script-plugin.gradle.kts] file
|
|
*/
|
|
id("common-compose-module-configs-script-plugin")
|
|
}
|
|
|
|
dependencies {
|
|
implementation(project(":components:carousel"))
|
|
implementation(project(":animations:lottie"))
|
|
|
|
addComposeOfficialDependencies()
|
|
} |