Chaohui Wang | 2d495b1 | 2019-09-05 14:28:41 +0800 | [diff] [blame] | 1 | /* |
| 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 Fresen | 4a13c56 | 2021-11-26 16:50:44 +0000 | [diff] [blame] | 16 | |
| 17 | import androidx.build.LibraryType |
| 18 | |
Chaohui Wang | 2d495b1 | 2019-09-05 14:28:41 +0800 | [diff] [blame] | 19 | plugins { |
| 20 | id("AndroidXPlugin") |
| 21 | id("com.android.library") |
| 22 | } |
| 23 | |
| 24 | dependencies { |
Alan Viverette | a75e3d6 | 2021-06-23 17:38:25 -0400 | [diff] [blame] | 25 | implementation(project(":ads:ads-identifier-common")) |
Chaohui Wang | f593665 | 2019-09-04 17:40:48 +0800 | [diff] [blame] | 26 | api("androidx.annotation:annotation:1.1.0") |
Aurimas Liutikas | 86e291f | 2021-05-24 16:21:40 -0700 | [diff] [blame] | 27 | api(libs.mockitoCore, excludes.bytebuddy) |
Chaohui Wang | f593665 | 2019-09-04 17:40:48 +0800 | [diff] [blame] | 28 | } |
| 29 | |
| 30 | android { |
| 31 | lintOptions { |
Jim Sproch | 9e38b4f | 2021-01-06 14:21:06 -0800 | [diff] [blame] | 32 | disable "InvalidPackage" // Lint is unhappy about mockito package |
Chaohui Wang | f593665 | 2019-09-04 17:40:48 +0800 | [diff] [blame] | 33 | } |
Chaohui Wang | 2d495b1 | 2019-09-05 14:28:41 +0800 | [diff] [blame] | 34 | } |
Jelle Fresen | 4a13c56 | 2021-11-26 16:50:44 +0000 | [diff] [blame] | 35 | |
| 36 | androidx { |
| 37 | type = LibraryType.INTERNAL_TEST_LIBRARY |
| 38 | } |