blob: 7f8d2889e0a95e7f2630fbb3aa1ac2906744dfef [file] [log] [blame]
/**
* 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.LibraryType
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
android {
defaultConfig {
minSdk = 28
}
namespace = "androidx.heifwriter"
}
dependencies {
api(libs.jspecify)
api("androidx.annotation:annotation:1.8.1")
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.testRules)
androidTestImplementation(libs.espressoCore)
}
androidx {
name = "HeifWriter"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2018"
description = "Android Support HeifWriter for writing HEIF still images"
}