blob: a14ea97038660b1732b180cbfca4b48de024d4f1 [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)
androidTestImplementation(ESPRESSO_CORE)
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)
}
android {
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
}