28 lines
546 B
Kotlin
28 lines
546 B
Kotlin
// Copyright 2024, Christopher Banes and the Haze project contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
|
|
plugins {
|
|
id("dev.chrisbanes.android.library")
|
|
id("dev.chrisbanes.kotlin.multiplatform")
|
|
id("dev.chrisbanes.compose")
|
|
id("org.jetbrains.dokka")
|
|
id("com.vanniktech.maven.publish")
|
|
id("dev.chrisbanes.metalava")
|
|
}
|
|
|
|
android {
|
|
namespace = "dev.chrisbanes.haze.materials"
|
|
}
|
|
|
|
kotlin {
|
|
sourceSets {
|
|
commonMain {
|
|
dependencies {
|
|
api(projects.haze)
|
|
implementation(compose.material3)
|
|
}
|
|
}
|
|
}
|
|
}
|