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