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