-
-
Notifications
You must be signed in to change notification settings - Fork 160
/
Copy pathbuild.gradle.kts
37 lines (34 loc) · 1014 Bytes
/
build.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
/*
* Copyright 2019-2021 Louis Cognault Ayeva Derman. Use of this source code is governed by the Apache 2.0 license.
*/
plugins {
id("com.android.library")
kotlin("multiplatform")
publish
}
android {
setDefaults(generateBuildConfig = true)
namespace = "splitties.views.dsl.core"
}
kotlin {
androidTarget()
configure(targets) { configureMavenPublication(publishReleaseVariantOnly = false) }
sourceSets {
commonMain.dependencies {
api(splitties("experimental"))
}
androidMain.dependencies {
api(splitties("views"))
api(AndroidX.annotation)
implementation(splitties("collections"))
implementation(splitties("exceptions"))
implementation(splitties("appctx"))
}
all {
languageSettings.apply {
optIn("kotlin.contracts.ExperimentalContracts")
optIn("splitties.experimental.InternalSplittiesApi")
}
}
}
}