blob: 7f75d099b5ca67cb92b95da4e37b820d81cd4a9e [file] [log] [blame]
Jakub Gielzak86c892d2017-12-05 15:00:46 +00001/*
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
17import static android.support.dependencies.DependenciesKt.*
18import android.support.LibraryGroups
19import android.support.LibraryVersions
20
21plugins {
22 id("SupportAndroidLibraryPlugin")
23}
24
25dependencies {
26 api(project(":support-core-utils"))
27 api(project(":recyclerview-v7"))
28
29 androidTestImplementation(TEST_RUNNER)
30 androidTestImplementation(ESPRESSO_CORE)
31}
32
33android {
34 defaultConfig {
35 minSdkVersion 14
36 }
37}
38
39supportLibrary {
40 name = "AndroidX Widget ViewPager2"
41 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
42 mavenGroup = LibraryGroups.SUPPORT
43 inceptionYear = "2017"
44 description = "AndroidX Widget ViewPager2"
Alan Viverettebf0ea1d2018-02-06 15:42:25 -050045}