[go: nahoru, domu]

blob: a3497b576e556e30ba9751dfc151d9f2a69025b0 [file] [log] [blame]
/*
* Copyright 2020 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.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXComposePlugin")
id("org.jetbrains.kotlin.android")
}
dependencies {
implementation(libs.kotlinStdlib)
compileOnly(project(":annotation:annotation-sampled"))
implementation("androidx.compose.runtime:runtime:1.2.0-rc01")
implementation(project(":compose:ui:ui"))
implementation(project(":compose:ui:ui-viewbinding"))
// Used when creating layouts that contain a FragmentContainerView
implementation("androidx.fragment:fragment-ktx:1.3.2")
androidTestImplementation(project(":compose:foundation:foundation"))
androidTestImplementation(project(":compose:test-utils"))
androidTestImplementation("androidx.activity:activity-compose:1.3.1")
androidTestImplementation(project(":internal-testutils-runtime"))
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.junit)
androidTestImplementation(libs.truth)
}
androidx {
name = "AndroidX Compose UI Simple Unit Classes Samples"
type = LibraryType.SAMPLES
mavenGroup = LibraryGroups.COMPOSE_UI
inceptionYear = "2019"
description = "Contains the sample code for the Androidx Compose UI Simple Unit Classes"
}
android {
buildFeatures {
viewBinding true
}
namespace "androidx.compose.ui.viewbinding.samples"
}