blob: 5ceae4e4a1db1a7d1de83ffaacba578e124339bb [file] [log] [blame]
Tiem Songee0da742024-01-03 14:08:46 -08001/**
2 * This file was created using the `create_project.py` script located in the
3 * `<AndroidX root>/development/project-creator` directory.
4 *
5 * Please use that script when creating a new project, rather than copying an existing project and
6 * modifying its settings.
7 */
Omar Ismail86e66062024-05-03 16:10:50 +01008import androidx.build.LibraryType
Sean McQuillanb72e0992021-03-03 12:22:08 -08009
Sean McQuillanb72e0992021-03-03 12:22:08 -080010plugins {
11 id("AndroidXPlugin")
12 id("com.android.library")
Sean McQuillanb72e0992021-03-03 12:22:08 -080013}
14
15dependencies {
Julia McClellan56c17ba2024-10-09 13:23:38 -040016 api(libs.jspecify)
Sean McQuillanb72e0992021-03-03 12:22:08 -080017 implementation(project(":emoji2:emoji2"))
18
Sean McQuillan1c4b3042021-04-05 17:05:22 -070019 api("androidx.core:core:1.3.0")
Aurimas Liutikasb5d8a812024-07-25 16:29:20 -070020 implementation("androidx.collection:collection:1.4.2")
Sean McQuillanb72e0992021-03-03 12:22:08 -080021
Aurimas Liutikasb3483fd2021-06-04 16:56:37 -070022 androidTestImplementation(libs.testExtJunit)
23 androidTestImplementation(libs.testCore)
24 androidTestImplementation(libs.testRunner)
25 androidTestImplementation(libs.testRules)
Aurimas Liutikas08f94ae2024-09-19 21:40:37 -070026 androidTestImplementation(libs.espressoCore)
Aurimas Liutikas1a31ba62024-08-30 12:49:00 -070027 androidTestImplementation(libs.mockitoCore)
28 androidTestImplementation(libs.dexmakerMockito)
Aurimas Liutikas0ea30912024-12-09 16:12:13 -080029 androidTestImplementation(project(":internal-testutils-runtime"))
Sean McQuillanb72e0992021-03-03 12:22:08 -080030}
31
32android {
Aurimas Liutikas77952822024-12-04 18:00:17 -080033 namespace = "androidx.emoji2.viewsintegration"
Sean McQuillanb72e0992021-03-03 12:22:08 -080034}
35
36androidx {
Alan Viverettec9e1fd72023-05-08 17:36:59 -040037 name = "Emoji2 Views Helper"
Omar Ismail86e66062024-05-03 16:10:50 +010038 type = LibraryType.PUBLISHED_LIBRARY
Sean McQuillanb72e0992021-03-03 12:22:08 -080039 inceptionYear = "2017"
Alan Viverettec9e1fd72023-05-08 17:36:59 -040040 description = "Provide helper classes for Emoji2 views."
Sean McQuillanb72e0992021-03-03 12:22:08 -080041}