blob: 990f308fe30883404acf09da8b20580a2388f9e5 [file] [log] [blame]
Steve McKayc01ec962017-05-23 14:32:58 -07001/*
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.*
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070018import android.support.LibraryGroups
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080019import android.support.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070020
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070021plugins {
22 id("SupportAndroidLibraryPlugin")
23}
Steve McKayc01ec962017-05-23 14:32:58 -070024
25dependencies {
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080026 api(project(":support-annotations"))
27 api(project(":support-compat"))
Steve McKayc01ec962017-05-23 14:32:58 -070028
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080029 androidTestImplementation(JUNIT)
Jake Wharton66807fc2017-12-05 14:44:35 -050030 androidTestImplementation(TEST_RUNNER)
31 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikas9edca682017-07-25 09:12:35 -070032}
33
Steve McKayc01ec962017-05-23 14:32:58 -070034supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080035 name = "Android Support Content"
36 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080037 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070038 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080039 inceptionYear = "2017"
40 description = "Library providing support for paging across content exposed via a ContentProvider. Use of this library allows a client to avoid expensive interprocess \"cursor window swaps\" on the UI thread."
Steve McKayc01ec962017-05-23 14:32:58 -070041}