blob: 67c05dad2edf860408d8bd63e259b6cebaff1545 [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.SoftwareType
import androidx.build.SoftwareType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
dependencies {
implementation(project(':wear:protolayout:protolayout'))
implementation(project(':wear:protolayout:protolayout-expression'))
implementation(project(":wear:protolayout:protolayout-expression-pipeline"))
implementation(project(":wear:tiles:tiles"))
implementation(project(":wear:tiles:tiles-renderer"))
implementation(project(":wear:tiles:tiles-tooling-preview"))
implementation("androidx.core:core:1.1.0")
implementation(libs.androidx.annotation)
implementation(libs.jspecify)
implementation(libs.kotlinStdlib)
testImplementation(libs.junit)
testImplementation(libs.mockitoCore4)
testImplementation(libs.mockitoKotlin4)
androidTestImplementation(libs.guava)
androidTestImplementation(libs.junit)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.testRules)
androidTestImplementation(project(":wear:protolayout:protolayout-material"))
}
android {
defaultConfig {
minSdk = 26
}
namespace = "androidx.wear.tiles.tooling"
}
androidx {
name = "Android Wear Tiles Tooling"
type = SoftwareType.PUBLISHED_LIBRARY
inceptionYear = "2023"
description = "A set of tools that are used to preview Tile components in Android Studio"
legacyDisableKotlinStrictApiMode = true
}