| /* |
| * 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("androidx.compose.compiler:compiler:1.0.0-rc01") |
| |
| implementation(libs.kotlinStdlib) |
| } |
| |
| |
| 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) |
| } |
| 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) |
| } |
| } |
| } |
| } |
| |
| |
| android { |
| defaultConfig { |
| minSdkVersion 25 |
| } |
| buildTypes.all { |
| consumerProguardFiles "proguard-rules.pro" |
| } |
| // Use Robolectric 4.+ |
| testOptions.unitTests.includeAndroidResources = true |
| } |
| |
| androidx { |
| name = "Android Wear Compose Foundation" |
| type = LibraryType.PUBLISHED_LIBRARY |
| mavenGroup = LibraryGroups.WEAR_COMPOSE |
| mavenVersion = LibraryVersions.WEAR_COMPOSE |
| 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." |
| targetsJavaConsumers = false |
| } |