Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 1 | /* |
| 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 Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 17 | /** |
| 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 Ismail | 86e6606 | 2024-05-03 16:10:50 +0100 | [diff] [blame] | 24 | import androidx.build.LibraryType |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 25 | |
| 26 | plugins { |
| 27 | id("AndroidXPlugin") |
| 28 | id("com.android.library") |
| 29 | } |
| 30 | |
| 31 | dependencies { |
Julia McClellan | 854f964 | 2024-12-03 10:16:25 -0500 | [diff] [blame] | 32 | api(libs.jspecify) |
John Nichol | c4f5cd2 | 2020-10-09 14:11:06 +0100 | [diff] [blame] | 33 | api(project(":wear:wear-input")) |
Jim Sproch | 9e38b4f | 2021-01-06 14:21:06 -0800 | [diff] [blame] | 34 | compileOnly fileTree(dir: "../wear_stubs", include: ["com.google.android.wearable-stubs.jar"]) |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 35 | } |
| 36 | |
| 37 | android { |
| 38 | defaultConfig { |
Aurimas Liutikas | 7795282 | 2024-12-04 18:00:17 -0800 | [diff] [blame] | 39 | minSdk = 25 |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 40 | } |
Aurimas Liutikas | 7795282 | 2024-12-04 18:00:17 -0800 | [diff] [blame] | 41 | namespace = "androidx.wear.input.testing" |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | androidx { |
Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 45 | name = "Android Wear Input Testing Extensions" |
Omar Ismail | 86e6606 | 2024-05-03 16:10:50 +0100 | [diff] [blame] | 46 | type = LibraryType.PUBLISHED_LIBRARY |
Nick Anthony | a9cc479 | 2021-03-25 09:49:36 -0400 | [diff] [blame] | 47 | mavenVersion = LibraryVersions.WEAR_INPUT_TESTING |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 48 | inceptionYear = "2020" |
Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 49 | description = "Android Wear Support Input Testing Helpers" |
Jamie Garside | ea0fb13 | 2020-05-15 10:28:00 +0100 | [diff] [blame] | 50 | } |