blob: 08b4a8b98b498132268cedc1d34f8be036cc451b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
// This causes WASM builds to fail with `Could not determine the dependencies of task ':kotlinNodeJsSetup'.`
// repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
}
}
rootProject.name = "ColorPickerComposeDemo"
include(":demo:androidApp")
include(":demo:shared")
include(":colorpicker-compose")
include(":benchmark")
include("wasmApp")
include("docs")
|