| import androidx.build.Publish |
| |
| plugins { |
| id("AndroidXPlugin") |
| id("com.android.library") |
| id("com.github.johnrengelman.shadow") |
| } |
| |
| dependencies { |
| implementation(project(":emoji2:emoji2")) |
| |
| api("androidx.core:core:1.3.0") |
| implementation("androidx.collection:collection:1.1.0") |
| |
| androidTestImplementation(libs.testExtJunit) |
| androidTestImplementation(libs.testCore) |
| androidTestImplementation(libs.testRunner) |
| androidTestImplementation(libs.testRules) |
| androidTestImplementation(libs.espressoCore, excludes.espresso) |
| androidTestImplementation(libs.mockitoCore, excludes.bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(libs.dexmakerMockito, excludes.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' |
| } |
| } |
| namespace "androidx.emoji2.viewsintegration" |
| } |
| |
| androidx { |
| name = "Android Emoji2 Compat view helpers" |
| publish = Publish.SNAPSHOT_AND_RELEASE |
| mavenGroup = LibraryGroups.EMOJI2 |
| inceptionYear = "2017" |
| description = "View helpers for Emoji2" |
| } |