-
Notifications
You must be signed in to change notification settings - Fork 32
/
settings.gradle.kts
41 lines (33 loc) · 1.01 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()
jcenter {
content {
includeGroup("org.jetbrains.kotlinx")
includeGroup("com.redmadrobot")
}
}
maven { url = uri("https://jitpack.io") }
}
}
includeBuild("widgets-build-logic")
includeBuild("plugin")
include(":widgets")
include(":widgets-sms")
include(":widgets-bottomsheet")
include(":widgets-collection")
include(":widgets-datetime-picker")
include(":widgets-image-network")
include(":widgets-permissions")
include(":widgets-media")
// allow to use moko-widgets as composite build in other projects with `android-app`/`mpp-library` modules
if (gradle.parent == null) {
include(":sample:android-app")
include(":sample:mpp-library")
}