blob: d02eed21fc74efc40b3cd82ce6c8a358211737bd [file] [log] [blame]
import androidx.build.Publish
plugins {
id("AndroidXPlugin")
id("com.android.library")
}
dependencies {
api("androidx.annotation:annotation:1.1.0")
api("androidx.core:core:1.1.0")
implementation(project(":appcompat:appcompat"))
implementation(project(":asynclayoutinflater:asynclayoutinflater"))
}
androidx {
name = "AsyncLayoutInflater AppCompat"
publish = Publish.SNAPSHOT_AND_RELEASE
inceptionYear = "2022"
description = "A thread-safe LayoutInflater Factory that provides compatibility between " +
"AsyncLayoutInflater and AppCompat."
metalavaK2UastEnabled = true
}
android {
namespace "androidx.asynclayoutinflater.appcompatfactory"
}