blob: dac5d0922364138a81f2274c507e767fbf6990c8 [file] [log] [blame]
repo sync -c -j8abeb7592022-05-12 01:20:33 +00001/*
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 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
repo sync -c -j8abeb7592022-05-12 01:20:33 +000025
26plugins {
27 id("AndroidXPlugin")
28 id("com.android.library")
Ömer Faruk Yılmaz1c6449b2022-06-14 09:19:15 +000029 id("kotlin-android")
30}
31
32dependencies {
Kyunglyul Hyun78f18bb2023-06-07 14:02:19 +090033 api(project(":bluetooth:bluetooth"))
34
Ömer Faruk Yılmaz1c6449b2022-06-14 09:19:15 +000035 implementation(libs.kotlinStdlib)
Kyunglyul Hyun78f18bb2023-06-07 14:02:19 +090036 implementation(libs.kotlinCoroutinesCore)
37
38 testImplementation(libs.kotlinCoroutinesTest)
39 testImplementation(libs.kotlinTest)
40
41 testImplementation(libs.robolectric)
repo sync -c -j8abeb7592022-05-12 01:20:33 +000042}
43
44androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040045 name = "Bluetooth Testing"
Omar Ismail86e66062024-05-03 16:10:50 +010046 type = LibraryType.PUBLISHED_LIBRARY
repo sync -c -j8abeb7592022-05-12 01:20:33 +000047 inceptionYear = "2022"
48 description = "Test utilities for AndroidX Bluetooth"
Jinseong Jeon999075e2023-08-22 00:40:11 -070049 metalavaK2UastEnabled = true
repo sync -c -j8abeb7592022-05-12 01:20:33 +000050}
51
52android {
53 namespace "androidx.bluetooth.testing"
Kyunglyul Hyun78f18bb2023-06-07 14:02:19 +090054 defaultConfig {
55 minSdkVersion 33
Kyunglyul Hyun78f18bb2023-06-07 14:02:19 +090056 }
repo sync -c -j8abeb7592022-05-12 01:20:33 +000057}