blob: 06dc73054c81d24e1ee36eccef55b4c49c67d2fb [file] [log] [blame]
Steve McKay63d28462017-10-05 08:53:42 -07001/*
2 * Copyright 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
Steve McKay63d28462017-10-05 08:53:42 -070019plugins {
20 id("SupportAndroidLibraryPlugin")
21}
22
23dependencies {
24 api project(':recyclerview-v7')
25 api project(':support-annotations')
26 api project(':support-compat')
27
Jake Wharton66807fc2017-12-05 14:44:35 -050028 androidTestImplementation(TEST_RUNNER)
29 androidTestImplementation(ESPRESSO_CORE)
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080030 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
31 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker
32 androidTestImplementation(JUNIT)
Steve McKay63d28462017-10-05 08:53:42 -070033}
34
Steve McKay63d28462017-10-05 08:53:42 -070035android {
36 defaultConfig {
37 minSdkVersion 14
38 }
39 sourceSets {
40 main.res.srcDirs 'res', 'res-public'
41 }
42}
43
44supportLibrary {
45 name 'Android RecyclerView Selection'
46 publish false
47 legacySourceLocation true
48 inceptionYear '2017'
49 description 'Library providing item selection framework for RecyclerView. Support for single and multi selection is provided.'
50}