[go: nahoru, domu]

blob: c51c55c053b6121843e27749c18fed61be712915 [file] [log] [blame]
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXComposePlugin")
id("org.jetbrains.kotlin.android")
}
dependencies {
implementation(libs.kotlinStdlib)
implementation(project(":compose:foundation:foundation"))
implementation(project(":compose:foundation:foundation-layout"))
implementation(project(":compose:integration-tests:demos:common"))
implementation(project(":compose:material:material"))
implementation(project(":compose:material:material:material-samples"))
implementation project(':compose:material:material-navigation-samples')
implementation(project(":compose:runtime:runtime"))
implementation(project(":compose:ui:ui"))
implementation(project(":compose:ui:ui-text"))
implementation("androidx.activity:activity-compose:1.3.1")
}
androidx {
name = "Compose Material Demos"
publish = Publish.NONE
inceptionYear = "2019"
description = "This is a project for Material demos."
}
android {
namespace "androidx.compose.material.demos"
}