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