blob: f8ad806769a8d1a6e1527b27fd42479219973220 [file] [log] [blame]
Tiem Songee0da742024-01-03 14:08:46 -08001/**
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 */
brenton.badea15e8f102022-10-26 22:19:08 +00008import androidx.build.LibraryType
9
10plugins {
11 id("AndroidXComposePlugin")
12 id("AndroidXPlugin")
Aurimas Liutikas6a058752023-05-10 15:03:57 -070013 id("org.jetbrains.kotlin.android")
brenton.badea15e8f102022-10-26 22:19:08 +000014 id("com.android.library")
15}
16
brenton.badea15e8f102022-10-26 22:19:08 +000017dependencies {
18 implementation(libs.kotlinStdlib)
19 api("androidx.annotation:annotation:1.4.0")
20 api("androidx.compose.runtime:runtime:1.1.1")
21 api(project(":glance:glance"))
brenton.badea15e8f102022-10-26 22:19:08 +000022 implementation 'androidx.compose.material:material:1.3.0'
23}
24
25android {
26 defaultConfig {
27 minSdkVersion 21
28 }
29 namespace "androidx.glance.material"
30}
31
32androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040033 name = "Glance Material"
brenton.badea15e8f102022-10-26 22:19:08 +000034 type = LibraryType.PUBLISHED_LIBRARY
brenton.badea15e8f102022-10-26 22:19:08 +000035 inceptionYear = "2022"
36 description = "Glance Material 2 integration library." +
37 " This library provides interop APIs with Material 2."
Jinseong Jeon999075e2023-08-22 00:40:11 -070038 metalavaK2UastEnabled = true
Aurimas Liutikas5c5419a2024-05-29 15:26:58 -070039 legacyDisableKotlinStrictApiMode = true
brenton.badea15e8f102022-10-26 22:19:08 +000040}
41