25 lines
519 B
Groovy
25 lines
519 B
Groovy
apply plugin: android.support.SupportAndroidLibraryPlugin
|
|
|
|
dependencies {
|
|
api project(':support-annotations')
|
|
|
|
androidTestImplementation libs.test_runner, { exclude module: 'support-annotations' }
|
|
}
|
|
|
|
android {
|
|
defaultConfig {
|
|
minSdkVersion 14
|
|
}
|
|
|
|
sourceSets {
|
|
main.java.srcDirs = ['src']
|
|
main.res.srcDirs = ['res']
|
|
}
|
|
}
|
|
|
|
supportLibrary {
|
|
name 'Android Support ExifInterface'
|
|
publish true
|
|
inceptionYear '2016'
|
|
description 'Android Support ExifInterface'
|
|
}
|