blob: 634a72588c115e7ac1ee9e4e8f0f2d5ac87d3ef5 [file] [log] [blame]
Hyundo Moon827dd782019-06-17 09:31:35 +09001/*
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 */
16
Hyundo Moon827dd782019-06-17 09:31:35 +090017plugins {
18 id("AndroidXPlugin")
19 id("com.android.library")
20}
21
22dependencies {
Gyumin Simd862f7c2021-09-06 12:30:58 +090023 androidTestImplementation("androidx.media2:media2-session:1.2.0-rc01")
Sam Gilbert0bda38c2020-11-01 16:09:47 -050024 androidTestImplementation(project(":media2:media2-session:version-compat-tests:common"))
Hyundo Moon827dd782019-06-17 09:31:35 +090025
Aurimas Liutikasbd3eb5a2021-05-24 16:29:53 -070026 androidTestImplementation(libs.testExtJunit)
27 androidTestImplementation(libs.testCore)
28 androidTestImplementation(libs.testRunner)
29 androidTestImplementation(libs.testRules)
Hyundo Moon827dd782019-06-17 09:31:35 +090030}
31
32android {
33 defaultConfig {
Gyumin Simd862f7c2021-09-06 12:30:58 +090034 minSdkVersion 16
Hyundo Moon827dd782019-06-17 09:31:35 +090035 }
Aurimas Liutikasc2e42f32022-06-10 15:56:37 -070036 namespace "androidx.media2.test.client"
Hyundo Moon827dd782019-06-17 09:31:35 +090037}
Alan Viverette619ad702020-12-10 13:16:25 -050038
39androidx {
40 failOnDeprecationWarnings = false
Jim Sproch9e38b4f2021-01-06 14:21:06 -080041}