blob: c156ddc398f8fbad71009317901d044d617e5e6e [file] [edit]
/**
* This file was created using the `create_project.py` script located in the
* `<AndroidX root>/development/project-creator` directory.
*
* Please use that script when creating a new project, rather than copying an existing project and
* modifying its settings.
*/
import androidx.build.SoftwareType
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api(libs.jspecify)
implementation("androidx.annotation:annotation:1.8.1")
androidTestImplementation libs.junit
androidTestImplementation libs.testExtJunit
androidTestImplementation libs.truth
androidTestImplementation libs.guavaAndroid
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.testRules)
}
androidx {
name = "ExifInterface"
type = SoftwareType.PUBLISHED_LIBRARY
inceptionYear = "2016"
description = "Android Support ExifInterface"
}
android {
namespace = "androidx.exifinterface"
}