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