| import static android.support.dependencies.DependenciesKt.* |
| import android.support.LibraryGroups |
| import android.support.LibraryVersions |
| |
| plugins { |
| id("SupportAndroidLibraryPlugin") |
| } |
| |
| dependencies { |
| api(project(":support-v4")) |
| api(project(":appcompat-v7")) |
| api(project(":recyclerview-v7")) |
| api(project(":transition")) |
| |
| androidTestImplementation(TEST_RUNNER) |
| androidTestImplementation(ESPRESSO_CORE) |
| androidTestImplementation(ESPRESSO_CONTRIB, libs.exclude_support) |
| androidTestImplementation(MOCKITO_CORE, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation(DEXMAKER_MOCKITO, libs.exclude_bytebuddy) // DexMaker has it"s own MockMaker |
| androidTestImplementation project(':support-testutils') |
| } |
| |
| android { |
| defaultConfig { |
| minSdkVersion 14 |
| // This disables the builds tools automatic vector -> PNG generation |
| generatedDensities = [] |
| } |
| |
| sourceSets { |
| main.java.srcDirs = [ |
| 'base', |
| 'gingerbread', |
| 'ics', |
| 'lollipop', |
| 'src' |
| ] |
| main.res.srcDirs = [ |
| 'res', |
| 'res-public' |
| ] |
| main.resources.srcDir 'src' |
| } |
| |
| buildTypes.all { |
| consumerProguardFiles 'proguard-rules.pro' |
| } |
| |
| aaptOptions { |
| additionalParameters "--no-version-vectors" |
| } |
| |
| buildTypes { |
| debug { |
| pseudoLocalesEnabled true |
| } |
| } |
| } |
| |
| supportLibrary { |
| name = "Android Design Support Library" |
| publish = true |
| mavenVersion = LibraryVersions.SUPPORT_LIBRARY |
| mavenGroup = LibraryGroups.SUPPORT |
| inceptionYear = "2015" |
| 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." |
| legacySourceLocation = true |
| } |