-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
37 lines (32 loc) · 1.07 KB
/
Copy pathbuild.gradle.kts
File metadata and controls
37 lines (32 loc) · 1.07 KB
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
plugins {
id("de.charlex.convention.android.application")
id("de.charlex.convention.kotlin.multiplatform.mobile")
id("de.charlex.convention.compose.multiplatform")
}
kotlin {
androidTarget()
sourceSets {
val androidMain by getting {
dependencies {
implementation(libs.androidx.activity.compose)
implementation(libs.androidx.core.ktx)
implementation(libs.androidx.appcompat)
implementation("com.google.android.material:material:1.13.0")
// implementation(compose.runtime)
// implementation(compose.foundation)
// implementation(compose.material)
// implementation(compose.material3)
implementation(compose.uiTooling)
implementation(project(":sample-app:shared"))
}
}
}
}
android {
namespace = "de.charlex.compose.htmltext.sample"
defaultConfig {
applicationId = "de.charlex.compose.htmltext.sample"
versionCode = 1
versionName = "1.0"
}
}