-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbuild.gradle.kts
More file actions
46 lines (37 loc) · 1017 Bytes
/
build.gradle.kts
File metadata and controls
46 lines (37 loc) · 1017 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
34
35
36
37
38
39
40
41
42
43
44
45
46
plugins {
id("com.android.library")
id("convention.compose")
id("convention-publish")
id("convention.detekt")
}
description = "Debug panel UI kit: theme, design tokens, shared components"
android {
compileSdk = Project.COMPILE_SDK
lint.targetSdk = Project.TARGET_SDK
defaultConfig {
minSdk = Project.MIN_SDK
consumerProguardFile("consumer-rules.pro")
}
buildTypes {
getByName(Project.BuildTypes.release) {
isMinifyEnabled = false
proguardFiles(
getDefaultProguardFile(Project.Proguard.androidOptimizedRules),
Project.Proguard.projectRules
)
}
}
kotlin {
jvmToolchain(17)
}
namespace = "com.redmadrobot.debug.uikit"
}
kotlin {
explicitApi()
}
dependencies {
implementation(androidx.compose.material3)
implementation(androidx.compose.ui.tooling)
implementation(androidx.compose.ui.tooling.preview)
implementation(androidx.core)
}