blob: e7d05c0e6057d24ec050133044c38130d6a6fd9d [file] [log] [blame]
Chaohui Wang2d495b12019-09-05 14:28:41 +08001/*
2 * Copyright 2019 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 */
Jelle Fresen4a13c562021-11-26 16:50:44 +000016
17import androidx.build.LibraryType
18
Chaohui Wang2d495b12019-09-05 14:28:41 +080019plugins {
20 id("AndroidXPlugin")
21 id("com.android.library")
22}
23
24dependencies {
Alan Viverettea75e3d62021-06-23 17:38:25 -040025 implementation(project(":ads:ads-identifier-common"))
Chaohui Wangf5936652019-09-04 17:40:48 +080026 api("androidx.annotation:annotation:1.1.0")
Aurimas Liutikas86e291f2021-05-24 16:21:40 -070027 api(libs.mockitoCore, excludes.bytebuddy)
Chaohui Wangf5936652019-09-04 17:40:48 +080028}
29
30android {
31 lintOptions {
Jim Sproch9e38b4f2021-01-06 14:21:06 -080032 disable "InvalidPackage" // Lint is unhappy about mockito package
Chaohui Wangf5936652019-09-04 17:40:48 +080033 }
Chaohui Wang2d495b12019-09-05 14:28:41 +080034}
Jelle Fresen4a13c562021-11-26 16:50:44 +000035
36androidx {
37 type = LibraryType.INTERNAL_TEST_LIBRARY
38}