Home | History | Annotate | Download | only in SupportPreferenceDemos
      1 apply plugin: 'com.android.application'
      2 
      3 dependencies {
      4     compile project(':support-appcompat-v7')
      5     compile project(':support-recyclerview-v7')
      6     compile project(':support-preference-v7')
      7     compile project(':support-preference-v14')
      8     compile project(':support-leanback-v17')
      9     compile project(':support-preference-leanback-v17')
     10 }
     11 
     12 android {
     13     compileSdkVersion project.ext.currentSdk
     14 
     15     defaultConfig {
     16         minSdkVersion 14
     17     }
     18 
     19     sourceSets {
     20         main.manifest.srcFile 'AndroidManifest.xml'
     21         main.java.srcDirs = ['src']
     22         main.aidl.srcDirs = ['src']
     23         main.res.srcDirs = ['res']
     24     }
     25 
     26     signingConfigs {
     27         debug {
     28             // Use a local debug keystore to avoid build server issues.
     29             storeFile project.rootProject.init.debugKeystore
     30         }
     31     }
     32 
     33     lintOptions {
     34         abortOnError false
     35     }
     36 
     37     compileOptions {
     38         sourceCompatibility JavaVersion.VERSION_1_7
     39         targetCompatibility JavaVersion.VERSION_1_7
     40     }
     41 }
     42