blob: 6d2c9a24c14a4c83f3c9fd777c78b10d45b465da [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
Tiem Songee0da742024-01-03 14:08:46 -080017/**
18 * This file was created using the `create_project.py` script located in the
19 * `<AndroidX root>/development/project-creator` directory.
20 *
21 * Please use that script when creating a new project, rather than copying an existing project and
22 * modifying its settings.
23 */
Omar Ismail86e66062024-05-03 16:10:50 +010024import androidx.build.LibraryType
Jamie Garsideea0fb132020-05-15 10:28:00 +010025
26plugins {
27 id("AndroidXPlugin")
28 id("com.android.library")
29}
30
31dependencies {
Julia McClellan854f9642024-12-03 10:16:25 -050032 api(libs.jspecify)
John Nicholc4f5cd22020-10-09 14:11:06 +010033 api(project(":wear:wear-input"))
Jim Sproch9e38b4f2021-01-06 14:21:06 -080034 compileOnly fileTree(dir: "../wear_stubs", include: ["com.google.android.wearable-stubs.jar"])
Jamie Garsideea0fb132020-05-15 10:28:00 +010035}
36
37android {
38 defaultConfig {
Aurimas Liutikas77952822024-12-04 18:00:17 -080039 minSdk = 25
Jamie Garsideea0fb132020-05-15 10:28:00 +010040 }
Aurimas Liutikas77952822024-12-04 18:00:17 -080041 namespace = "androidx.wear.input.testing"
Jamie Garsideea0fb132020-05-15 10:28:00 +010042}
43
44androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040045 name = "Android Wear Input Testing Extensions"
Omar Ismail86e66062024-05-03 16:10:50 +010046 type = LibraryType.PUBLISHED_LIBRARY
Nick Anthonya9cc4792021-03-25 09:49:36 -040047 mavenVersion = LibraryVersions.WEAR_INPUT_TESTING
Jamie Garsideea0fb132020-05-15 10:28:00 +010048 inceptionYear = "2020"
Alan Viverettec9e1fd72023-05-08 17:36:59 -040049 description = "Android Wear Support Input Testing Helpers"
Jamie Garsideea0fb132020-05-15 10:28:00 +010050}