blob: da533ab6747c011059bab2ae64b91a358239ada6 [file] [log] [blame]
/*
* Copyright 2021 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.AndroidXComposePlugin
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXComposePlugin")
id("org.jetbrains.kotlin.android")
}
dependencies {
api("androidx.compose.foundation:foundation:1.7.4")
api(project(":compose:ui:ui"))
api(project(":compose:ui:ui-text"))
api("androidx.compose.runtime:runtime:1.7.4")
implementation("androidx.compose.foundation:foundation-layout:1.7.4")
implementation("androidx.compose.ui:ui-util:1.7.4")
implementation("androidx.lifecycle:lifecycle-runtime-compose:2.7.0")
implementation("androidx.core:core:1.12.0")
implementation("androidx.profileinstaller:profileinstaller:1.4.0")
testImplementation(libs.testRules)
testImplementation(libs.testRunner)
testImplementation(libs.junit)
testImplementation(libs.truth)
testImplementation(libs.testCoreKtx)
testImplementation(libs.kotlinTest)
testImplementation(libs.kotlinCoroutinesTest)
testImplementation(libs.robolectric)
testImplementation(libs.mockitoCore4)
testImplementation(libs.mockitoKotlin4)
testImplementation(project(":compose:ui:ui-test"))
testImplementation(project(":compose:ui:ui-test-junit4"))
testImplementation(project(":compose:test-utils"))
androidTestImplementation(project(":compose:foundation:foundation"))
androidTestImplementation(project(":compose:ui:ui-test"))
androidTestImplementation(project(":compose:ui:ui-test-junit4"))
androidTestImplementation(project(":compose:test-utils"))
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.kotlinTest)
androidTestImplementation(libs.truth)
androidTestImplementation(libs.mockitoAndroid5)
// Includes the wear-sdk jar
compileOnly files("../../wear_sdk/wear-sdk.jar")
testImplementation(files("../../wear_sdk/wear-sdk.jar"))
}
android {
compileSdk = 35
defaultConfig {
minSdk = 25
}
// Use Robolectric 4.+
testOptions.unitTests.includeAndroidResources = true
buildTypes.configureEach {
consumerProguardFiles("proguard-rules.pro")
}
namespace = "androidx.wear.compose.foundation"
}
androidx {
name = "Android Wear Compose Foundation"
type = LibraryType.PUBLISHED_LIBRARY_ONLY_USED_BY_KOTLIN_CONSUMERS
inceptionYear = "2021"
description = "WearOS Compose Foundation Library. This library makes it easier for developers" +
"to write Jetpack Compose applications for Wearable devices by providing " +
"functionality to support wearable specific devices sizes, shapes and navigation " +
"gestures. It builds upon the Jetpack Compose libraries."
samples(project(":wear:compose:compose-foundation-samples"))
metalavaK2UastEnabled = false
addGoldenImageAssets()
}