1/**
2 * This file was created using the `create_project.py` script located in the
3 * `<AndroidX root>/development/project-creator` directory.
4 *
5 * Please use that script when creating a new project, rather than copying an existing project and
6 * modifying its settings.
7 */
8import androidx.build.SoftwareType
9
10plugins {
11    id("AndroidXComposePlugin")
12    id("AndroidXPlugin")
13    id("org.jetbrains.kotlin.android")
14    id("com.android.library")
15}
16
17dependencies {
18    implementation(libs.kotlinStdlib)
19    api("androidx.annotation:annotation:1.8.1")
20    api("androidx.compose.runtime:runtime:1.1.1")
21    api(project(":glance:glance"))
22    implementation("androidx.compose.material:material:1.3.0")
23}
24
25android {
26    namespace = "androidx.glance.material"
27}
28
29androidx {
30    name = "Glance Material"
31    type = SoftwareType.PUBLISHED_LIBRARY
32    inceptionYear = "2022"
33    description = "Glance Material 2 integration library." +
34            " This library provides interop APIs with Material 2."
35    legacyDisableKotlinStrictApiMode = true
36}
37
38