blob: d1d531ce502f62da691ac09942d3e28a49482902 [file] [log] [blame]
import androidx.build.ApkCopyHelperKt
/**
* 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.
*/
plugins {
id("AndroidXPlugin")
id("AndroidXComposePlugin")
id("com.android.application")
id("org.jetbrains.kotlin.android")
}
dependencies {
implementation(project(":compose:animation:animation:integration-tests:animation-demos"))
implementation(project(":compose:foundation:foundation-layout:integration-tests:foundation-layout-demos"))
implementation(project(":compose:foundation:foundation:integration-tests:foundation-demos"))
implementation(project(":compose:material:material:integration-tests:material-demos"))
implementation(project(":compose:material3:material3:integration-tests:material3-demos"))
implementation(project(":navigation:navigation-compose:integration-tests:navigation-demos"))
implementation(project(":paging:paging-compose:integration-tests:paging-demos"))
implementation(project(":compose:ui:ui:integration-tests:ui-demos"))
implementation(libs.kotlinReflect)
implementation(libs.kotlinStdlib)
implementation(project(":core:core-ktx"))
implementation(project(":compose:foundation:foundation"))
implementation(project(":compose:foundation:foundation-layout"))
implementation(project(":compose:integration-tests:demos:common"))
implementation(project(":compose:material:material"))
implementation("androidx.compose.material:material-icons-extended:1.6.7")
implementation(project(":compose:material3:material3"))
implementation(project(":compose:runtime:runtime"))
implementation(project(":compose:ui:ui"))
implementation("androidx.preference:preference-ktx:1.1.1")
}
// Publish an APK so demo app is available in ab/ for devs, PMs, QA to use.
// Can also be used to bisect escaped defects in functionality.
ApkCopyHelperKt.setupAppApkCopy(project, "release")
android {
compileSdk = 35
namespace = "androidx.compose.integration.demos"
}