blob: b311b0b3384bd3d706a6417f62e36950406e2538 [file] [log] [blame]
Jin Seok Park3aa13ea2018-04-09 17:18:07 +09001/*
2 * Copyright 2018 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
17import static androidx.build.dependencies.DependenciesKt.*
18import androidx.build.LibraryGroups
19import androidx.build.LibraryVersions
20
21plugins {
22 id("SupportAndroidLibraryPlugin")
23}
24
25dependencies {
Hyundo Moon999d7142018-06-19 14:30:19 +090026 api(project(":media2"))
Jin Seok Park3aa13ea2018-04-09 17:18:07 +090027 api(project(":mediarouter"))
28 api(project(":appcompat"))
29 api(project(":palette"))
30
Aurimas Liutikas3f9ceb62018-07-10 11:57:16 -070031 androidTestImplementation(TEST_RUNNER)
32 androidTestImplementation(TEST_RULES)
33 androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso)
Jin Seok Park3aa13ea2018-04-09 17:18:07 +090034 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
35 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
36 androidTestImplementation project(':internal-testutils')
37}
38
39supportLibrary {
Insun Kangddc59ba2018-07-25 18:47:35 +090040 name = "Androidx Media Widget library"
Jin Seok Park3aa13ea2018-04-09 17:18:07 +090041 publish = true
Alan Viverette78630162018-06-28 14:58:14 -040042 mavenVersion = LibraryVersions.MEDIA_WIDGET
Jin Seok Park3aa13ea2018-04-09 17:18:07 +090043 mavenGroup = LibraryGroups.MEDIA
Insun Kangddc59ba2018-07-25 18:47:35 +090044 inceptionYear = "2018"
45 description = "Androidx Media Widget"
Insun Kangd65fd272018-04-13 22:18:25 +090046 failOnDeprecationWarnings = false
47 failOnDeprecationWarnings = false
Jin Seok Park3aa13ea2018-04-09 17:18:07 +090048}