blob: 47c84adf3e4e87fe3bf9e859257bbe11100e7060 [file] [log] [blame]
Chris Banese17c5192016-06-01 13:36:05 +01001apply plugin: 'com.android.application'
2
3dependencies {
Aurimas Liutikasf4ec12f2017-11-22 12:55:43 -08004 implementation(project(":transition"))
5 implementation(project(":appcompat-v7"))
Chris Banese17c5192016-06-01 13:36:05 +01006}
7
8android {
9 compileSdkVersion project.ext.currentSdk
10
11 defaultConfig {
12 minSdkVersion 14
Aurimas Liutikas6a346f62017-06-19 12:03:30 -070013 targetSdkVersion project.ext.currentSdk
Chris Banese17c5192016-06-01 13:36:05 +010014 }
15
Chris Banese17c5192016-06-01 13:36:05 +010016 lintOptions {
Aurimas Liutikas63a25302017-01-29 13:59:43 -080017 abortOnError true
Aurimas Liutikas624bd202017-06-15 10:44:13 -070018 check 'NewApi'
Chris Banese17c5192016-06-01 13:36:05 +010019 }
20
Alan Viverette1b862372017-03-22 11:32:28 -040021 signingConfigs {
22 debug {
23 // Use a local debug keystore to avoid build server issues.
24 storeFile project.rootProject.init.debugKeystore
25 }
26 }
27
Chris Banese17c5192016-06-01 13:36:05 +010028 compileOptions {
Aurimas Liutikas00f56192017-07-25 15:30:08 -070029 sourceCompatibility JavaVersion.VERSION_1_8
30 targetCompatibility JavaVersion.VERSION_1_8
Chris Banese17c5192016-06-01 13:36:05 +010031 }
Yuichi Araki81580512017-02-09 15:55:53 +090032
33 aaptOptions {
34 additionalParameters "--no-version-transitions"
35 }
Chris Banese17c5192016-06-01 13:36:05 +010036}
37