diff options
| author | 2022-11-04 12:12:46 -0700 | |
|---|---|---|
| committer | 2022-11-05 05:15:11 +0000 | |
| commit | c752af580837f2ac5b85b34679ca971b33f40e10 (patch) | |
| tree | a13ccf79a4adfa3ac64a6466f7984e63d8b7ba06 | |
| parent | 5f141f2a46262207d3d368254e05501f231c61be (diff) | |
Adds a few dependencies to the shared library.
We need lifecycle, coroutine, and recycler view dependencies to be able
to use the shared library from Wallpaper picker.
Bug: 254857639
Test: tested together with the rest of the CL chain
Change-Id: I4e41a911891ff3ba30ff82163be1005ef3974be3
Merged-In: I4e41a911891ff3ba30ff82163be1005ef3974be3
| -rw-r--r-- | packages/SystemUI/shared/Android.bp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/SystemUI/shared/Android.bp b/packages/SystemUI/shared/Android.bp index 91fd6a60d0df..ebc4186187bf 100644 --- a/packages/SystemUI/shared/Android.bp +++ b/packages/SystemUI/shared/Android.bp @@ -52,6 +52,11 @@ android_library { "SystemUIUnfoldLib", "androidx.dynamicanimation_dynamicanimation", "androidx.concurrent_concurrent-futures", + "androidx.lifecycle_lifecycle-runtime-ktx", + "androidx.lifecycle_lifecycle-viewmodel-ktx", + "androidx.recyclerview_recyclerview", + "kotlinx_coroutines_android", + "kotlinx_coroutines", "gson-prebuilt-jar", "dagger2", "jsr330", @@ -64,6 +69,7 @@ android_library { }, min_sdk_version: "current", plugins: ["dagger2-compiler"], + kotlincflags: ["-Xjvm-default=enable"], } java_library { |