-
-
Notifications
You must be signed in to change notification settings - Fork 162
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
33 lines (29 loc) · 763 Bytes
/
build.gradle.kts
File metadata and controls
33 lines (29 loc) · 763 Bytes
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
/*
* 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()
namespace = "splitties.views"
}
kotlin {
androidTarget()
configure(targets) { configureMavenPublication() }
sourceSets {
commonMain.dependencies {
api(splitties("experimental"))
}
androidMain.dependencies {
api(splitties("dimensions"))
api(splitties("resources"))
api(splitties("systemservices"))
api(AndroidX.annotation)
api(AndroidX.core.ktx)
implementation(splitties("mainthread"))
}
}
}