blob: aee73c05ae517de1137ca4911d5507220fbb2e16 [file] [log] [blame]
import static android.support.dependencies.DependenciesKt.*
import android.support.LibraryGroups
import android.support.LibraryVersions
import android.support.SupportLibraryExtension
plugins {
id("SupportAndroidLibraryPlugin")
}
android {
buildTypes.all {
consumerProguardFiles 'proguard-rules.pro'
}
}
dependencies {
api(project(":lifecycle:common"))
api(project(":arch:common"))
// necessary for IJ to resolve dependencies.
api(SUPPORT_ANNOTATIONS)
testImplementation(JUNIT)
testImplementation(MOCKITO_CORE)
androidTestImplementation(JUNIT)
androidTestImplementation(TEST_RUNNER)
}
supportLibrary {
name 'Android Lifecycle Runtime'
publish true
mavenVersion = LibraryVersions.LIFECYCLES_RUNTIME
mavenGroup LibraryGroups.LIFECYCLE
inceptionYear '2017'
description "Android Lifecycle Runtime"
url SupportLibraryExtension.ARCHITECTURE_URL
}