blob: 272efec78cc2b9eaa83cf414c59caac21d528511 [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.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."
metalavaK2UastEnabled = true
}
android {
namespace "androidx.asynclayoutinflater"
}