blob: 44ec7c0bfe7c536543c9801e7e06a62ab8917c12 [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")
androidTestImplementation(project(":appcompat:appcompat"))
androidTestImplementation(project(":asynclayoutinflater:asynclayoutinflater-appcompat"))
androidTestImplementation(libs.testCore)
androidTestImplementation(libs.testRunner)
androidTestImplementation(libs.testRules)
androidTestImplementation(libs.testExtJunit)
androidTestImplementation(libs.guavaListenableFuture)
androidTestImplementation(libs.guavaAndroid)
}
androidx {
name = "AsyncLayoutInflater"
publish = Publish.SNAPSHOT_AND_RELEASE
inceptionYear = "2018"
description = "Provides support for inflating layouts off the UI thread."
}
android {
namespace "androidx.asynclayoutinflater"
}