1apply plugin: android.support.SupportLibraryPlugin 2archivesBaseName = 'exifinterface' 3 4dependencies { 5 compile project(':support-annotations') 6 7 androidTestCompile (libs.test_runner) { 8 exclude module: 'support-annotations' 9 } 10} 11 12android { 13 defaultConfig { 14 minSdkVersion 14 15 } 16 17 sourceSets { 18 main.java.srcDirs = ['src'] 19 main.res.srcDirs = ['res'] 20 } 21} 22 23supportLibrary { 24 name 'Android Support ExifInterface' 25 inceptionYear '2016' 26 description 'Android Support ExifInterface' 27} 28