blob: 946d48b01b6924186ffbbc30894e9356f9cf2c97 [file] [log] [blame]
Hyundo Moon72e64db2017-07-20 14:09:13 +09001/*
2 * Copyright (C) 2017 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 */
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070016
17plugins {
18 id("SupportAndroidLibraryPlugin")
19}
Hyundo Moon72e64db2017-07-20 14:09:13 +090020
21dependencies {
Hyundo Moon9938e172017-07-26 20:51:11 +090022 androidTestImplementation project(':support-annotations')
23 androidTestImplementation project(':support-media-compat')
24 androidTestImplementation project(':support-media-compat-test-lib')
25
26 androidTestImplementation(libs.test_runner) {
27 exclude module: 'support-annotations'
28 }
Hyundo Moon72e64db2017-07-20 14:09:13 +090029}
30
31android {
32 defaultConfig {
33 minSdkVersion 14
34 }
35}
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070036
37supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080038 legacySourceLocation = true
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070039}