Home | History | Annotate | Download | only in recommendation
      1 apply plugin: android.support.SupportAndroidLibraryPlugin
      2 
      3 dependencies {
      4     api project(':support-annotations')
      5 }
      6 
      7 android {
      8     defaultConfig {
      9         minSdkVersion 21
     10     }
     11 
     12     sourceSets {
     13         main.java.srcDirs = ['src']
     14         main.res.srcDir 'res'
     15     }
     16 
     17 }
     18 
     19 supportLibrary {
     20     name 'Android Support Recommendation'
     21     publish true
     22     inceptionYear '2015'
     23     description 'Android Support Recommendation'
     24 }
     25