Tiem Song | ee0da74 | 2024-01-03 14:08:46 -0800 | [diff] [blame] | 1 | /** |
| 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 Ismail | 86e6606 | 2024-05-03 16:10:50 +0100 | [diff] [blame] | 8 | import androidx.build.LibraryType |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 9 | |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 10 | plugins { |
| 11 | id("AndroidXPlugin") |
| 12 | id("com.android.library") |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 13 | } |
| 14 | |
| 15 | dependencies { |
Julia McClellan | 56c17ba | 2024-10-09 13:23:38 -0400 | [diff] [blame] | 16 | api(libs.jspecify) |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 17 | implementation(project(":emoji2:emoji2")) |
| 18 | |
Sean McQuillan | 1c4b304 | 2021-04-05 17:05:22 -0700 | [diff] [blame] | 19 | api("androidx.core:core:1.3.0") |
Aurimas Liutikas | b5d8a81 | 2024-07-25 16:29:20 -0700 | [diff] [blame] | 20 | implementation("androidx.collection:collection:1.4.2") |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 21 | |
Aurimas Liutikas | b3483fd | 2021-06-04 16:56:37 -0700 | [diff] [blame] | 22 | androidTestImplementation(libs.testExtJunit) |
| 23 | androidTestImplementation(libs.testCore) |
| 24 | androidTestImplementation(libs.testRunner) |
| 25 | androidTestImplementation(libs.testRules) |
Aurimas Liutikas | 08f94ae | 2024-09-19 21:40:37 -0700 | [diff] [blame] | 26 | androidTestImplementation(libs.espressoCore) |
Aurimas Liutikas | 1a31ba6 | 2024-08-30 12:49:00 -0700 | [diff] [blame] | 27 | androidTestImplementation(libs.mockitoCore) |
| 28 | androidTestImplementation(libs.dexmakerMockito) |
Aurimas Liutikas | 0ea3091 | 2024-12-09 16:12:13 -0800 | [diff] [blame] | 29 | androidTestImplementation(project(":internal-testutils-runtime")) |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 30 | } |
| 31 | |
| 32 | android { |
Aurimas Liutikas | 7795282 | 2024-12-04 18:00:17 -0800 | [diff] [blame] | 33 | namespace = "androidx.emoji2.viewsintegration" |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 34 | } |
| 35 | |
| 36 | androidx { |
Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 37 | name = "Emoji2 Views Helper" |
Omar Ismail | 86e6606 | 2024-05-03 16:10:50 +0100 | [diff] [blame] | 38 | type = LibraryType.PUBLISHED_LIBRARY |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 39 | inceptionYear = "2017" |
Alan Viverette | c9e1fd7 | 2023-05-08 17:36:59 -0400 | [diff] [blame] | 40 | description = "Provide helper classes for Emoji2 views." |
Sean McQuillan | b72e099 | 2021-03-03 12:22:08 -0800 | [diff] [blame] | 41 | } |