| import androidx.build.BundleInsideHelper |
| import androidx.build.LibraryGroups |
| import androidx.build.LibraryVersions |
| import androidx.build.Publish |
| |
| import static androidx.build.dependencies.DependenciesKt.* |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("com.github.johnrengelman.shadow") |
| } |
| |
| dependencies { |
| implementation(project(":emoji2:emoji2")) |
| |
| api("androidx.core:core:1.3.0-rc01") |
| implementation("androidx.collection:collection:1.1.0") |
| |
| androidTestImplementation(ANDROIDX_TEST_EXT_JUNIT) |
| androidTestImplementation(ANDROIDX_TEST_CORE) |
| androidTestImplementation(ANDROIDX_TEST_RUNNER) |
| androidTestImplementation(ANDROIDX_TEST_RULES) |
| androidTestImplementation(ESPRESSO_CORE, libs.exclude_for_espresso) |
| androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation project(':internal-testutils-runtime') |
| } |
| |
| android { |
| sourceSets { |
| main { |
| // We use a non-standard manifest path. |
| manifest.srcFile 'AndroidManifest.xml' |
| } |
| } |
| } |
| |
| androidx { |
| name = "Android Emoji2 Compat view helpers" |
| publish = Publish.NONE |
| mavenVersion = LibraryVersions.EMOJI2 |
| mavenGroup = LibraryGroups.EMOJI2 |
| inceptionYear = "2017" |
| description = "View helpers for Emoji2" |
| } |