| /* |
| * 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 Laicense. |
| * 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.LibraryVersions |
| import androidx.build.Publish |
| import androidx.build.RunApiTasks |
| |
| import static androidx.build.dependencies.DependenciesKt.* |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("kotlin-android") |
| } |
| |
| dependencies { |
| api("androidx.annotation:annotation:1.1.0") |
| api(project(":wear:wear-complications-data")) |
| api(project(":wear:wear-complications-rendering")) |
| api(project(":wear:wear-watchface-data")) |
| api(project(":wear:wear-watchface-style")) |
| api(KOTLIN_STDLIB) |
| |
| implementation("androidx.concurrent:concurrent-futures:1.0.0") |
| implementation("androidx.core:core:1.1.0") |
| implementation("androidx.recyclerview:recyclerview:1.1.0") |
| implementation("androidx.wear:wear:1.1.0-rc01") |
| |
| 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, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(TRUTH) |
| |
| testImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| testImplementation(ANDROIDX_TEST_CORE) |
| testImplementation(ANDROIDX_TEST_RULES) |
| testImplementation(MOCKITO_CORE) |
| testImplementation(MOCKITO_KOTLIN) |
| testImplementation(ROBOLECTRIC) |
| testImplementation(TRUTH) |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 28 |
| testInstrumentationRunner("androidx.test.runner.AndroidJUnitRunner") |
| } |
| |
| sourceSets.androidTest.assets.srcDirs += |
| project.rootDir.absolutePath + "/../../golden/wear/wear-watchface" |
| |
| // Use Robolectric 4.+ |
| testOptions.unitTests.includeAndroidResources = true |
| } |
| |
| androidx { |
| name = "Android Wear Watchface" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| runApiTasks = new RunApiTasks.No("Temporary policy violation, see b/162936364") |
| mavenGroup = LibraryGroups.WEAR |
| mavenVersion = LibraryVersions.WEAR_WATCHFACE |
| inceptionYear = "2020" |
| description = "Android Wear Watchface" |
| } |