blob: cd3cc7e3180161024e923b834b4b74f079dec0b9 [file] [log] [blame]
Tony Mantler6904f672015-02-19 08:58:37 -08001/*
2 * Copyright (C) 2015 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 Liutikasca04e9a2017-08-23 21:19:51 -070017apply plugin: android.support.SupportAndroidLibraryPlugin
Tony Mantler6904f672015-02-19 08:58:37 -080018
19dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070020 api project(':support-v4')
Aurimas Liutikas40e78212017-07-20 14:22:58 -070021 api project(':appcompat-v7')
22 api project(':recyclerview-v7')
23 api project(':preference-v7')
Tony Mantler6904f672015-02-19 08:58:37 -080024}
25
26android {
Alan Viverette9439d702016-10-25 14:45:10 +010027 defaultConfig {
28 minSdkVersion 14
29 }
30
Tony Mantler6904f672015-02-19 08:58:37 -080031 sourceSets {
Tony Mantler6904f672015-02-19 08:58:37 -080032 main.java.srcDir 'src'
33 main.res.srcDir 'res'
34 main.assets.srcDir 'assets'
35 main.resources.srcDir 'src'
Tony Mantler6904f672015-02-19 08:58:37 -080036 }
Tony Mantler6904f672015-02-19 08:58:37 -080037}
Tony Mantlera2dbc752015-10-07 15:34:36 -070038
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080039supportLibrary {
40 name 'Android Support Preference v14'
Aurimas Liutikase1f39f02017-08-23 17:59:58 -070041 publish true
Aurimas Liutikas16cd13b2017-01-04 15:00:13 -080042 inceptionYear '2015'
43 description 'Android Support Preference v14'
44}