blob: 4177903ee1930748f1ffcd60c2a2aa98d7656cf0 [file] [log] [blame]
import androidx.build.AndroidXComposePlugin
import androidx.build.LibraryType
plugins {
id("AndroidXComposePlugin")
id("AndroidXPlugin")
id("com.android.library")
}
// Disable multi-platform; this will only be used on Android.
AndroidXComposePlugin.applyAndConfigureKotlinPlugin(project, /* isMultiplatformEnabled= */false)
dependencies {
implementation(libs.kotlinStdlib)
api("androidx.annotation:annotation:1.4.0")
api("androidx.compose.runtime:runtime:1.1.1")
api(project(":glance:glance"))
implementation("androidx.compose.material3:material3:1.0.0")
}
android {
defaultConfig {
minSdkVersion 21
}
namespace "androidx.glance.material3"
}
androidx {
name = "Android Glance Material"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2022"
description = "Glance Material integration library." +
" This library provides interop APIs with Material 3."
}