blob: 47c84adf3e4e87fe3bf9e859257bbe11100e7060 [file] [log] [blame]
apply plugin: 'com.android.application'
dependencies {
implementation(project(":transition"))
implementation(project(":appcompat-v7"))
}
android {
compileSdkVersion project.ext.currentSdk
defaultConfig {
minSdkVersion 14
targetSdkVersion project.ext.currentSdk
}
lintOptions {
abortOnError true
check 'NewApi'
}
signingConfigs {
debug {
// Use a local debug keystore to avoid build server issues.
storeFile project.rootProject.init.debugKeystore
}
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
aaptOptions {
additionalParameters "--no-version-transitions"
}
}