Home | History | Annotate | Download | only in SupportTransitionDemos
      1 apply plugin: 'com.android.application'
      2 
      3 dependencies {
      4     implementation project(':transition')
      5     implementation project(':appcompat-v7')
      6 }
      7 
      8 android {
      9     compileSdkVersion project.ext.currentSdk
     10 
     11     defaultConfig {
     12         minSdkVersion 14
     13         targetSdkVersion project.ext.currentSdk
     14     }
     15 
     16     sourceSets {
     17         main.manifest.srcFile 'AndroidManifest.xml'
     18         main.java.srcDirs = ['src']
     19         main.res.srcDirs = ['res']
     20     }
     21 
     22     lintOptions {
     23         abortOnError true
     24         check 'NewApi'
     25     }
     26 
     27     signingConfigs {
     28         debug {
     29             // Use a local debug keystore to avoid build server issues.
     30             storeFile project.rootProject.init.debugKeystore
     31         }
     32     }
     33 
     34     compileOptions {
     35         sourceCompatibility JavaVersion.VERSION_1_8
     36         targetCompatibility JavaVersion.VERSION_1_8
     37     }
     38 
     39     aaptOptions {
     40         additionalParameters "--no-version-transitions"
     41     }
     42 }
     43 
     44