blob: 0b562c89f82451720bdd5c6c15c1f75ffe553d7f [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
implementation project(':appcompat-v7')
implementation project(':cardview-v7')
implementation project(':gridlayout-v7')
implementation project(':mediarouter-v7')
implementation project(':palette-v7')
implementation project(':recyclerview-v7')
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 14
targetSdkVersion project.ext.currentSdk
vectorDrawables.useSupportLibrary = true
}
signingConfigs {
debug {
// Use a local debug keystore to avoid build server issues.
storeFile project.rootProject.init.debugKeystore
}
}
lintOptions {
abortOnError true
check 'NewApi'
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
}