forked from icerockdev/moko-resources
-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.gradle.kts
41 lines (35 loc) · 1.09 KB
/
settings.gradle.kts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
/*
* Copyright 2019 IceRock MAG Inc. Use of this source code is governed by the Apache 2.0 license.
*/
enableFeaturePreview("VERSION_CATALOGS")
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
dependencyResolutionManagement {
repositories {
mavenCentral()
google()
maven { url = uri("https://maven.pkg.jetbrains.space/public/p/compose/dev") }
jcenter {
content {
includeGroup("org.jetbrains.kotlinx")
}
}
}
}
includeBuild("resources-build-logic")
includeBuild("resources-generator")
include(":resources")
include(":resources-compose")
include(":resources-test")
include(":sample:android-app")
include(":sample:android-app-compose")
include(":sample:android-mpp-app")
include(":sample:mpp-library")
include(":sample:mpp-library:nested-module")
include(":sample:mpp-library:empty-module")
include(":sample:mpp-conditional")
include(":sample:mpp-hierarhical")
include(":sample:mpp-mixed")
include(":sample:jvm-app")
include(":sample:web-app-compose")
include(":sample:test-utils")
include(":sample:ios-kotlin-app")