blob: 3fe04d82b100466710c84a87c66fc62c336115bc [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 Liutikas7f40a7e2017-10-27 17:55:06 -070017import android.support.LibraryGroups
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080018import android.support.LibraryVersions
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070019
Aurimas Liutikasf8b708a2017-11-02 16:07:13 -070020plugins {
21 id("SupportAndroidLibraryPlugin")
22}
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080023
24dependencies {
Aurimas Liutikas1989c3c2017-07-05 14:44:09 -070025 api fileTree(include: ['*.jar'], dir: 'libs')
Aurimas Liutikasb8fd9b62017-11-22 12:55:43 -080026 api(project(":support-emoji"))
27 api(project(":appcompat-v7"))
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080028}
29
30android {
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080031 defaultConfig {
Siyamed Sinir77b5c5b2017-04-26 20:52:49 -070032 minSdkVersion 14
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080033 }
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080034}
35
36supportLibrary {
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080037 name = "Android Emoji AppCompat"
38 publish = true
Aurimas Liutikas78c1ab72017-11-08 13:33:51 -080039 mavenVersion = LibraryVersions.SUPPORT_LIBRARY
Aurimas Liutikas7f40a7e2017-10-27 17:55:06 -070040 mavenGroup = LibraryGroups.SUPPORT
Aurimas Liutikasea5ee822017-11-06 12:52:28 -080041 inceptionYear = "2017"
42 description = "EmojiCompat Widgets for AppCompat integration"
43 legacySourceLocation = true
Siyamed Sinirf8ec1692017-02-07 17:55:14 -080044}