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(":annotation")) 11 api(project(":core")) 12 api(project(":documentfile")) 13 api(project(":loader")) 14 api(project(":localbroadcastmanager")) 15 api(project(":print")) 16 17 androidTestImplementation(TEST_RUNNER_TMP, libs.exclude_for_espresso) 18 androidTestImplementation(ESPRESSO_CORE_TMP, libs.exclude_for_espresso) 19 androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker 20 androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker 21} 22 23supportLibrary { 24 name = "Android Support Library core utils" 25 publish = true 26 mavenVersion = LibraryVersions.SUPPORT_LIBRARY 27 mavenGroup = LibraryGroups.LEGACY 28 inceptionYear = "2011" 29 description = "The Support Library is a static library that you can add to your Android application in order to use APIs that are either not available for older platform versions or utility APIs that aren't a part of the framework APIs. Compatible on devices running API 14 or later." 30} 31