1import static androidx.build.dependencies.DependenciesKt.* 2import androidx.build.LibraryGroups 3import androidx.build.LibraryVersions 4 5plugins { 6 id("SupportAndroidLibraryPlugin") 7} 8 9dependencies { 10 api(project(":core")) 11 api(project(":legacy-support-core-utils")) 12 13 annotationProcessor(NULLAWAY) 14 15 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) 16} 17 18supportLibrary { 19 name = "Android Support Palette v7" 20 publish = true 21 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 22 mavenGroup = LibraryGroups.PALETTE 23 inceptionYear = "2014" 24 description = "Android Support Palette v7" 25} 26