blob: 15f96c4a7b7d15f28a5f60403fe4a31b4ea4df5f [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)
30 androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
31 androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
Aurimas Liutikas9edca682017-07-25 09:12:35 -070032}
33
34android {
35 defaultConfig {
36 minSdkVersion 14
Steve McKayc01ec962017-05-23 14:32:58 -070037 }
Steve McKayc01ec962017-05-23 14:32:58 -070038}
39
40supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080041 name = "Android Support Content"
42 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080043 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070044 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080045 inceptionYear = "2017"
46 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."
47 legacySourceLocation = true
Steve McKayc01ec962017-05-23 14:32:58 -070048}