| /* |
| * Copyright 2019 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. |
| */ |
| |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryType |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("AndroidXComposePlugin") |
| id("org.jetbrains.kotlin.android") |
| } |
| |
| dependencies { |
| kotlinPlugin project(":compose:compiler:compiler") |
| |
| implementation(libs.kotlinStdlib) |
| |
| api "androidx.annotation:annotation:1.1.0" |
| |
| api(project(":compose:runtime:runtime")) |
| api(project(":compose:ui:ui")) |
| |
| androidTestImplementation project(":compose:ui:ui-test-junit4") |
| |
| androidTestImplementation(libs.junit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| |
| androidTestImplementation(libs.truth) |
| androidTestImplementation(project(":compose:foundation:foundation-layout")) |
| androidTestImplementation(project(":compose:foundation:foundation")) |
| androidTestImplementation(project(":compose:material:material")) |
| androidTestImplementation("androidx.activity:activity-compose:1.3.1") |
| } |
| |
| androidx { |
| name = "Compose Tooling Data" |
| type = LibraryType.PUBLISHED_LIBRARY |
| mavenGroup = LibraryGroups.Compose.UI |
| inceptionYear = "2021" |
| description = "Compose tooling library data. This library provides data about compose" + |
| " for different tooling purposes." |
| legacyDisableKotlinStrictApiMode = true |
| } |