summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Cross <ccross@android.com>2024-03-25 15:21:29 -0700
committerColin Cross <ccross@android.com>2024-03-26 13:56:06 -0700
commit64ee6e2bc6a57d5649fddddaba456fdb7521e15e (patch)
treefa7070524d865a2ed8b061ee0218650e5e3bef5f
parent417dae889d11929722b68a83294505181b394e29 (diff)
downloadbase-64ee6e2bc6a57d5649fddddaba456fdb7521e15e.tar.gz
Don't use androidx nodeps modules
The androidx nodeps modules were an internal implementation detail, they are being removed. Replace the nodeps dependencies with the non-nodeps versions. Bug: 326265727 Test: builds Flag: None Change-Id: Ief6c23460c27c64eaf9220563316bdbcc5b8d86b
-rw-r--r--packages/SystemUI/Android.bp2
-rw-r--r--packages/SystemUI/animation/Android.bp4
2 files changed, 3 insertions, 3 deletions
diff --git a/packages/SystemUI/Android.bp b/packages/SystemUI/Android.bp
index f8e207c8061a..999507b300e4 100644
--- a/packages/SystemUI/Android.bp
+++ b/packages/SystemUI/Android.bp
@@ -329,7 +329,7 @@ android_library {
"WindowManager-Shell",
"LowLightDreamLib",
"motion_tool_lib",
- "androidx.core_core-animation-testing-nodeps",
+ "androidx.core_core-animation-testing",
"androidx.compose.ui_ui",
"flag-junit",
"platform-test-annotations",
diff --git a/packages/SystemUI/animation/Android.bp b/packages/SystemUI/animation/Android.bp
index b900ea0c0f65..e945f1eb0991 100644
--- a/packages/SystemUI/animation/Android.bp
+++ b/packages/SystemUI/animation/Android.bp
@@ -41,7 +41,7 @@ android_library {
],
static_libs: [
- "androidx.core_core-animation-nodeps",
+ "androidx.core_core-animation",
"androidx.core_core-ktx",
"androidx.annotation_annotation",
"SystemUIShaderLib",
@@ -62,7 +62,7 @@ android_library {
],
static_libs: [
- "androidx.core_core-animation-nodeps",
+ "androidx.core_core-animation",
"androidx.core_core-ktx",
"androidx.annotation_annotation",
],