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.material3:material3:1.0.0") 23 implementation("androidx.core:core:1.12.0") 24} 25 26android { 27 namespace = "androidx.glance.material3" 28} 29 30androidx { 31 name = "Glance Material" 32 type = SoftwareType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS 33 inceptionYear = "2022" 34 description = "Glance Material integration library." + 35 " This library provides interop APIs with Material 3." 36 legacyDisableKotlinStrictApiMode = true 37} 38 39