blob: 860dde70e5cc73f35897dda4ec6980379db765a3 [file] [log] [blame] [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.testExtJunit)
androidTestImplementation(libs.testExtTruth)
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"
}