[go: nahoru, domu]

blob: 5b6e687ed07ac5492e8c6a854bbed7b6ccb53c9d [file] [log] [blame]
import androidx.build.LibraryGroups
import androidx.build.LibraryVersions
import androidx.build.Publish
import androidx.build.RunApiTasks
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
ext {
fontDir = project(':noto-emoji-compat').projectDir
}
android {
sourceSets {
main.assets.srcDirs new File(fontDir, "font").getAbsolutePath()
}
}
dependencies {
api(project(":emoji"))
}
androidx {
name = "Android Emoji2 Compat"
publish = Publish.NONE
mavenVersion = LibraryVersions.EMOJI2
mavenGroup = LibraryGroups.EMOJI2
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"
}
}