From 90d4fdcf0f4a3cb7b6c8cfeebc79f3f3db7eab31 Mon Sep 17 00:00:00 2001 From: kimvde Date: Thu, 1 Dec 2022 09:21:54 +0000 Subject: [PATCH] Fix gradle build Add required import for androidx.window.java.layout.WindowInfoTrackerCallbackAdapter PiperOrigin-RevId: 492131661 --- library/ui/build.gradle | 1 + 1 file changed, 1 insertion(+) diff --git a/library/ui/build.gradle b/library/ui/build.gradle index c7c990069d..266111709a 100644 --- a/library/ui/build.gradle +++ b/library/ui/build.gradle @@ -28,6 +28,7 @@ dependencies { implementation 'androidx.core:core:' + androidxCoreVersion implementation 'androidx.recyclerview:recyclerview:' + androidxRecyclerViewVersion implementation 'androidx.window:window:' + androidxWindowVersion + implementation 'androidx.window:window-java:' + androidxWindowVersion compileOnly 'org.checkerframework:checker-qual:' + checkerframeworkVersion compileOnly 'org.jetbrains.kotlin:kotlin-annotations-jvm:' + kotlinAnnotationsVersion testImplementation project(modulePrefix + 'testutils')