blob: d99826d107ccbf4dddec8e870fe2615b38b36e38 [file] [log] [blame]
Aurimas Liutikas6d20a522017-03-10 17:13:03 -08001/*
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 */
16
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080017import static android.support.dependencies.DependenciesKt.*
18
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070019plugins {
20 id("SupportAndroidLibraryPlugin")
21}
Aurimas Liutikas6d20a522017-03-10 17:13:03 -080022
23dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080024 api(project(":support-fragment"))
25 api(project(":appcompat-v7"))
Kirill Grouchnikov3743a7e2017-09-26 17:55:05 -040026
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080027 implementation(TEST_RUNNER, libs.exclude_annotations)
28 implementation(ESPRESSO_CORE, libs.exclude_annotations)
29 implementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
30 implementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
31 implementation(JUNIT)
Aurimas Liutikas6d20a522017-03-10 17:13:03 -080032}
33
Aurimas Liutikas63f60162017-09-19 06:30:32 -070034android {
35 defaultConfig {
36 minSdkVersion 14
37 }
38 lintOptions {
39 disable 'InvalidPackage' // Lint is unhappy about junit package
40 }
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070041}
42
43supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080044 legacySourceLocation = true
Aurimas Liutikas63f60162017-09-19 06:30:32 -070045}