blob: 55c606d1de9044cadcba00def51ced16d032614f [file] [log] [blame]
Siyamed Sinirf8ec1692017-02-07 17:55:14 -08001/*
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 Liutikasf8b708a2017-11-02 16:07:13 -070017plugins {
18 id("SupportAndroidLibraryPlugin")
19}
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080020
21dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070022 api fileTree(include: ['*.jar'], dir: 'libs')
23 api project(':support-emoji')
Aurimas Liutikas40e78212017-07-20 14:22:58 -070024 api project(':appcompat-v7')
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080025}
26
27android {
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080028 defaultConfig {
Siyamed Sinir77b5c5b2017-04-26 20:52:49 -070029 minSdkVersion 14
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080030 }
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080031}
32
33supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080034 name = "Android Emoji AppCompat"
35 publish = true
36 inceptionYear = "2017"
37 description = "EmojiCompat Widgets for AppCompat integration"
38 legacySourceLocation = true
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080039}