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