blob: c619f6b7b3dd9f34982c937cf7909fea64a6ce18 [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
compile project(':support-dynamic-animation')
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 16
targetSdkVersion project.ext.currentSdk
}
sourceSets {
main.manifest.srcFile 'AndroidManifest.xml'
main.java.srcDirs = ['src']
main.aidl.srcDirs = ['src']
main.res.srcDirs = ['res']
}
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_7
targetCompatibility JavaVersion.VERSION_1_7
}
}