blob: b98e7f78e487d3451c35a91eaf94ac510b0872b4 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
import android.support.LibraryVersions
plugins {
id("SupportAndroidLibraryPlugin")
}
dependencies {
api(project(":support-annotations"))
api(project(":support-compat"))
api(project(":support-core-ui"))
androidTestImplementation(TEST_RUNNER, libs.exclude_annotations)
androidTestImplementation(ESPRESSO_CORE, libs.exclude_annotations)
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(JUNIT)
androidTestImplementation(project(":support-testutils"))
testImplementation(JUNIT)
testImplementation(MOCKITO_CORE)
testImplementation(TEST_RUNNER, libs.exclude_annotations)
}
android {
defaultConfig {
minSdkVersion(14)
}
sourceSets {
main.res.srcDirs "res", "res-public"
}
buildTypes.all {
consumerProguardFiles("proguard-rules.pro")
}
}
supportLibrary {
name = "Android Support RecyclerView v7"
publish = true
mavenVersion = LibraryVersions.SUPPORT_LIBRARY
mavenGroup = LibraryGroups.SUPPORT
inceptionYear = "2014"
description = "Android Support RecyclerView v7"
legacySourceLocation = true
}