blob: 91ad998b21d6d8a0c95d61310e1c165ad0635622 [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.RunApiTasks
import static androidx.build.dependencies.DependenciesKt.*
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
id("org.jetbrains.kotlin.android")
}
dependencies {
api("androidx.annotation:annotation:1.1.0")
api(project(":wear:wear-watchface"))
api(project(":wear:wear-watchface-data"))
api(project(":wear:wear-watchface-style"))
api(project(":wear:wear-complications-data"))
api(KOTLIN_COROUTINES_ANDROID)
androidTestImplementation(project(":test-screenshot"))
androidTestImplementation(project(":wear:wear-watchface-samples"))
androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT)
androidTestImplementation(ANDROIDX_TEST_CORE)
androidTestImplementation(ANDROIDX_TEST_RUNNER)
androidTestImplementation(ANDROIDX_TEST_RULES)
androidTestImplementation(MOCKITO_CORE, excludes.bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(DEXMAKER_MOCKITO, excludes.bytebuddy) // DexMaker has it"s own MockMaker
androidTestImplementation(TRUTH)
testImplementation(ANDROIDX_TEST_EXT_JUNIT)
testImplementation(ANDROIDX_TEST_CORE)
testImplementation(ANDROIDX_TEST_RULES)
testImplementation(ROBOLECTRIC)
testImplementation(TRUTH)
implementation("androidx.core:core:1.1.0")
}
android {
defaultConfig {
minSdkVersion 25
}
sourceSets.androidTest.assets.srcDirs +=
project.rootDir.absolutePath + "/../../golden/wear/wear-watchface-client"
// Use Robolectric 4.+
testOptions.unitTests.includeAndroidResources = true
}
androidx {
name = "Android Wear Watchface Client"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenGroup = LibraryGroups.WEAR
mavenVersion = LibraryVersions.WEAR_WATCHFACE_CLIENT
inceptionYear = "2020"
description = "Client library for controlling androidx watchfaces"
}