blob: 8b6fdad8daefdfcbb8dcbea98621fc07cc46946f [file] [log] [blame]
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api("androidx.annotation:annotation:1.0.1")
api(libs.autoValueAnnotations)
testImplementation(libs.testCore)
testImplementation(libs.testRunner)
annotationProcessor(libs.autoValue)
testImplementation(libs.junit)
testImplementation(libs.truth)
testImplementation(libs.robolectric)
}
android {
defaultConfig {
minSdkVersion 21
}
testOptions.unitTests.includeAndroidResources = true
namespace "androidx.enterprise.feedback"
}
androidx {
name = "Enterprise Feedback"
publish = Publish.SNAPSHOT_AND_RELEASE
mavenGroup = LibraryGroups.ENTERPRISE
inceptionYear = "2019"
description = "A channel to enable communication between an app and an EMM (enterprise " +
"mobility management)"
}