blob: 2941f0662c17c63d451d15e29cc5ff27f1e9c3de [file] [log] [blame]
import android.support.LibraryGroups
plugins {
id("SupportAndroidLibraryPlugin")
}
ext {
fontDir = project(':noto-emoji-compat').projectDir
}
android {
defaultConfig {
minSdkVersion 14
}
sourceSets {
main.assets.srcDirs new File(fontDir, "font").getAbsolutePath()
}
}
dependencies {
api project(':support-emoji')
}
supportLibrary {
name = "Android Emoji Compat"
publish = true
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2017"
description = "Library bundled with assets to enable emoji compatibility in Kitkat and newer devices to avoid the empty emoji characters."
license {
name = "SIL Open Font License, Version 1.1"
url = "http://scripts.sil.org/cms/scripts/page.php?item_id=OFL_web"
}
license {
name = "Unicode, Inc. License"
url = "http://www.unicode.org/copyright.html#License"
}
legacySourceLocation = true
}