| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2022 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 |
| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 25 | |
| 26 | plugins { |
| 27 | id("AndroidXPlugin") |
| 28 | id("com.android.library") |
| Ömer Faruk Yılmaz | 1c6449b | 2022-06-14 09:19:15 +0000 | [diff] [blame] | 29 | id("kotlin-android") |
| 30 | } |
| 31 | |
| 32 | dependencies { |
| Kyunglyul Hyun | 78f18bb | 2023-06-07 14:02:19 +0900 | [diff] [blame] | 33 | api(project(":bluetooth:bluetooth")) |
| 34 | |
| Ömer Faruk Yılmaz | 1c6449b | 2022-06-14 09:19:15 +0000 | [diff] [blame] | 35 | implementation(libs.kotlinStdlib) |
| Kyunglyul Hyun | 78f18bb | 2023-06-07 14:02:19 +0900 | [diff] [blame] | 36 | implementation(libs.kotlinCoroutinesCore) |
| 37 | |
| 38 | testImplementation(libs.kotlinCoroutinesTest) |
| 39 | testImplementation(libs.kotlinTest) |
| 40 | |
| 41 | testImplementation(libs.robolectric) |
| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | androidx { |
| Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 45 | name = "Bluetooth Testing" |
| Omar Ismail | 86e6606 | 2024-05-03 16:10:50 +0100 | [diff] [blame] | 46 | type = LibraryType.PUBLISHED_LIBRARY |
| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 47 | inceptionYear = "2022" |
| 48 | description = "Test utilities for AndroidX Bluetooth" |
| Jinseong Jeon | 999075e | 2023-08-22 00:40:11 -0700 | [diff] [blame] | 49 | metalavaK2UastEnabled = true |
| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 50 | } |
| 51 | |
| 52 | android { |
| 53 | namespace "androidx.bluetooth.testing" |
| Kyunglyul Hyun | 78f18bb | 2023-06-07 14:02:19 +0900 | [diff] [blame] | 54 | defaultConfig { |
| 55 | minSdkVersion 33 |
| Kyunglyul Hyun | 78f18bb | 2023-06-07 14:02:19 +0900 | [diff] [blame] | 56 | } |
| repo sync -c -j8 | abeb759 | 2022-05-12 01:20:33 +0000 | [diff] [blame] | 57 | } |