blob: 6e907ba8e40ca6df77ef086b76b633f29bc635b2 [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.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
inceptionYear = "2019"
description = "A channel to enable communication between an app and an EMM (enterprise " +
"mobility management)"
metalavaK2UastEnabled = true
}