blob: c8eda418a8d1d21cfd1231b023021872682a53e9 [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.
*/
import androidx.build.LibraryGroups
import androidx.build.LibraryType
import androidx.build.LibraryVersions
import androidx.build.AndroidXComposePlugin
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("AndroidXComposePlugin")
}
AndroidXComposePlugin.applyAndConfigureKotlinPlugin(project)
dependencies {
kotlinPlugin(project(":compose:compiler:compiler"))
if(!AndroidXComposePlugin.isMultiplatformEnabled(project)) {
api("androidx.compose.foundation:foundation:1.0.0-rc02")
api("androidx.compose.ui:ui:1.0.0-rc02")
api("androidx.compose.ui:ui-text:1.0.0-rc02")
api(project(":compose:runtime:runtime"))
implementation(libs.kotlinStdlib)
implementation("androidx.compose.material:material:1.0.0-rc02")
implementation("androidx.compose.material:material-ripple:1.0.0-rc02")
implementation(project(":compose:ui:ui-util"))
implementation(project(":wear:compose:compose-foundation"))
androidTestImplementation project(path: ':compose:ui:ui-test')
androidTestImplementation project(path: ':compose:ui:ui-test-junit4')
androidTestImplementation project(path: ':compose:test-utils')
androidTestImplementation project(":test:screenshot:screenshot")
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.truth)
samples(project(":wear:compose:compose-material-samples"))
}
}
if(AndroidXComposePlugin.isMultiplatformEnabled(project)) {
kotlin {
android()
jvm("desktop")
/*
* When updating dependencies, make sure to make the an an analogous update in the
* corresponding block above
*/
sourceSets {
commonMain.dependencies {
implementation(libs.kotlinStdlibCommon)
api(project(":compose:foundation:foundation"))
api(project(":compose:ui:ui"))
api(project(":compose:ui:ui-text"))
api(project(":compose:runtime:runtime"))
api("androidx.annotation:annotation:1.1.0")
implementation(project(":compose:material:material"))
implementation(project(":compose:material:material-ripple"))
implementation(project(":compose:ui:ui-util"))
implementation(project(":wear:compose:compose-foundation"))
}
jvmMain.dependencies {
implementation(libs.kotlinStdlib)
}
androidMain {
dependsOn(jvmMain)
}
desktopMain {
dependsOn(jvmMain)
}
commonTest.dependencies {
implementation(kotlin("test-junit"))
}
androidAndroidTest.dependencies {
implementation(libs.testExtJunit)
implementation(libs.testRules)
implementation(libs.testRunner)
implementation(libs.truth)
implementation(project(":compose:ui:ui-util"))
implementation(project(path: ':compose:ui:ui-test'))
implementation(project(path: ':compose:ui:ui-test-junit4'))
implementation(project(path: ':compose:test-utils'))
implementation(project(":test:screenshot:screenshot"))
}
}
}
}
android {
defaultConfig {
minSdkVersion 25
}
buildTypes.all {
consumerProguardFiles "proguard-rules.pro"
}
// Use Robolectric 4.+
testOptions.unitTests.includeAndroidResources = true
sourceSets.androidTest.assets.srcDirs +=
project.rootDir.absolutePath + "/../../golden/wear/compose/material"
}
androidx {
name = "Android Wear Compose Material"
type = LibraryType.PUBLISHED_LIBRARY
mavenGroup = LibraryGroups.WEAR_COMPOSE
inceptionYear = "2021"
description = "WearOS Compose Material Library. This library makes it easier for developers " +
"to write Jetpack Compose applications for Wearable devices that implement Wear " +
"Material Design UX guidelines and specifications. It builds upon the Jetpack Compose" +
" libraries."
targetsJavaConsumers = false
}