blob: f2b595910cb9f8567ecb74ff57d4ed8da7c8a62e [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")
}
dependencies {
api(libs.jspecify)
api("androidx.annotation:annotation:1.8.1")
api("androidx.core:core:1.1.0")
implementation(project(":appcompat:appcompat"))
implementation(project(":asynclayoutinflater:asynclayoutinflater"))
}
androidx {
name = "AsyncLayoutInflater AppCompat"
type = LibraryType.PUBLISHED_LIBRARY
inceptionYear = "2022"
description = "A thread-safe LayoutInflater Factory that provides compatibility between " +
"AsyncLayoutInflater and AppCompat."
}
android {
namespace = "androidx.asynclayoutinflater.appcompatfactory"
}