1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'palette-v7' 3 4dependencies { 5 compile project(':support-compat') 6 compile project(':support-core-utils') 7 8 androidTestCompile (libs.test_runner) { 9 exclude module: 'support-annotations' 10 } 11} 12 13android { 14 defaultConfig { 15 minSdkVersion 14 16 } 17} 18 19supportLibrary { 20 name 'Android Support Palette v7' 21 inceptionYear '2014' 22 description 'Android Support Palette v7' 23} 24