blob: 540294b4c17b7dd10f8a0bb01f396ace95393945 [file] [log] [blame]
Jamie Garsideea0fb132020-05-15 10:28:00 +01001/*
2 * Copyright 2020 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Jamie Garsideea0fb132020-05-15 10:28:00 +010017import androidx.build.Publish
18
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22}
23
24dependencies {
John Nicholc4f5cd22020-10-09 14:11:06 +010025 api(project(":wear:wear-input"))
Jim Sproch9e38b4f2021-01-06 14:21:06 -080026 compileOnly fileTree(dir: "../wear_stubs", include: ["com.google.android.wearable-stubs.jar"])
Jamie Garsideea0fb132020-05-15 10:28:00 +010027}
28
29android {
30 defaultConfig {
Jamie Garsidec01702062020-06-16 14:42:18 +010031 minSdkVersion 25
Jamie Garsideea0fb132020-05-15 10:28:00 +010032 }
33}
34
35androidx {
36 name = "Android Wear Support Input Testing Helpers"
37 publish = Publish.SNAPSHOT_AND_RELEASE
38 mavenGroup = LibraryGroups.WEAR
Nick Anthonya9cc4792021-03-25 09:49:36 -040039 mavenVersion = LibraryVersions.WEAR_INPUT_TESTING
Jamie Garsideea0fb132020-05-15 10:28:00 +010040 inceptionYear = "2020"
41 description = "Android Wear Support Input Testing Helpers"
42}