blob: e0f587c00078bb4835e831fc421258080cda8e63 [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
17import androidx.build.Publish
18
19plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
Ömer Faruk Yılmaz1c6449b2022-06-14 09:19:15 +000022 id("kotlin-android")
23}
24
25dependencies {
26 implementation(libs.kotlinStdlib)
repo sync -c -j8abeb7592022-05-12 01:20:33 +000027}
28
29androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040030 name = "Bluetooth Testing"
repo sync -c -j8abeb7592022-05-12 01:20:33 +000031 publish = Publish.SNAPSHOT_AND_RELEASE
repo sync -c -j8abeb7592022-05-12 01:20:33 +000032 inceptionYear = "2022"
33 description = "Test utilities for AndroidX Bluetooth"
34}
35
36android {
37 namespace "androidx.bluetooth.testing"
38}