1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'gridlayout-v7' 3 4dependencies { 5 compile project(':support-compat') 6 compile project(':support-core-ui') 7 8 androidTestCompile (libs.test_runner) { 9 exclude module: 'support-annotations' 10 } 11 androidTestCompile (libs.espresso_core) { 12 exclude module: 'support-annotations' 13 } 14} 15 16android { 17 defaultConfig { 18 minSdkVersion 14 19 } 20 21 sourceSets { 22 main.java.srcDir 'src' 23 main.res.srcDir 'res' 24 main.assets.srcDir 'assets' 25 main.resources.srcDir 'src' 26 } 27} 28 29supportLibrary { 30 name 'Android Support Grid Layout' 31 inceptionYear '2013' 32 description 'Android Support Grid Layout' 33} 34