1/** 2 * This file was created using the `create_project.py` script located in the 3 * `<AndroidX root>/development/project-creator` directory. 4 * 5 * Please use that script when creating a new project, rather than copying an existing project and 6 * modifying its settings. 7 */ 8import androidx.build.SoftwareType 9 10plugins { 11 id("AndroidXPlugin") 12 id("com.android.library") 13} 14dependencies { 15 api(libs.jspecify) 16 api("androidx.annotation:annotation:1.8.1") 17 api(libs.autoValueAnnotations) 18 testImplementation(libs.testCore) 19 testImplementation(libs.testRunner) 20 annotationProcessor(libs.autoValue) 21 testImplementation(libs.junit) 22 testImplementation(libs.truth) 23 testImplementation(libs.robolectric) 24} 25android { 26 testOptions.unitTests.includeAndroidResources = true 27 namespace = "androidx.enterprise.feedback" 28} 29 30androidx { 31 name = "Enterprise Feedback" 32 type = SoftwareType.PUBLISHED_LIBRARY 33 inceptionYear = "2019" 34 description = "A channel to enable communication between an app and an EMM (enterprise " + 35 "mobility management)" 36} 37