blob: 463b22ebbac25695f731c6d67be9e799cbe92e5f [file] [log] [blame]
/*
* Copyright 2023 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
/**
* 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.Publish
plugins {
id("AndroidXPlugin")
id("org.jetbrains.kotlin.android")
id("com.android.library")
}
dependencies {
implementation(libs.kotlinStdlib)
implementation(project(":wear:protolayout:protolayout-proto"))
implementation(project(":wear:tiles:tiles"))
api("androidx.wear:wear-tooling-preview:1.0.0")
api("androidx.annotation:annotation:1.6.0")
}
android {
defaultConfig {
minSdkVersion 26
}
namespace "androidx.wear.tiles.tooling.preview"
}
androidx {
name = "Android Wear Tiles Tooling"
type = LibraryType.PUBLISHED_LIBRARY
publish = Publish.SNAPSHOT_AND_RELEASE
inceptionYear = "2023"
description = "Wear Tile tooling library. This library provides the API required to declare" +
" @Preview on previewable methods in the IDE."
metalavaK2UastEnabled = true
}