Home | History | Annotate | Download | only in percent
      1 apply plugin: android.support.SupportLibraryPlugin
      2 archivesBaseName = 'percent'
      3 
      4 dependencies {
      5     compile project(':support-compat')
      6     androidTestCompile (libs.test_runner) {
      7         exclude module: 'support-annotations'
      8     }
      9     androidTestCompile (libs.espresso_core) {
     10         exclude module: 'support-annotations'
     11     }
     12 }
     13 
     14 android {
     15     defaultConfig {
     16         minSdkVersion 14
     17     }
     18 
     19     sourceSets {
     20         main.java.srcDirs = ['src']
     21         main.res.srcDir 'res'
     22         main.assets.srcDir 'assets'
     23         main.resources.srcDir 'src'
     24     }
     25 }
     26 
     27 supportLibrary {
     28     name 'Android Percent Support Library'
     29     inceptionYear '2015'
     30     description 'Android Percent Support Library'
     31 }
     32