| 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" |
| } |