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