blob: 629fc9f5129d767bcec4cd7e21d72378dc0d2593 [file] [log] [blame]
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.LibraryType
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.4.2")
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 {
namespace "androidx.emoji2.viewsintegration"
}
androidx {
name = "Emoji2 Views Helper"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2017"
description = "Provide helper classes for Emoji2 views."
}