Clean up legacy androidx lib for SettingsLib

Replace deprecated "androidx.legacy_legacy-support-v4" with the
followings,
"androidx.annotation_annotation"
"androidx.coordinatorlayout_coordinatorlayout"
"androidx.core_core"
"androidx.fragment_fragment"
"androidx.loader_loader"
"androidx.localbroadcastmanager_localbroadcastmanager"

Bug: 234570979
Test: make
Change-Id: I076578f5b8915941784367e9202be39664d27db2
This commit is contained in:
Chaohui Wang
2022-05-16 17:18:10 +08:00
parent 4c824f613b
commit c269f228ed
2 changed files with 24 additions and 17 deletions

View File

@@ -13,12 +13,15 @@ android_library {
static_libs: [
"androidx.annotation_annotation",
"androidx.legacy_legacy-support-v4",
"androidx.recyclerview_recyclerview",
"androidx.preference_preference",
"androidx.appcompat_appcompat",
"androidx.coordinatorlayout_coordinatorlayout",
"androidx.core_core",
"androidx.fragment_fragment",
"androidx.lifecycle_lifecycle-runtime",
"androidx.mediarouter_mediarouter-nodeps",
"androidx.loader_loader",
"androidx.localbroadcastmanager_localbroadcastmanager",
"androidx.preference_preference",
"androidx.recyclerview_recyclerview",
"com.google.android.material_material",
"iconloader",
@@ -74,13 +77,15 @@ java_defaults {
name: "SettingsLibDefaults",
static_libs: [
"androidx.annotation_annotation",
"androidx.lifecycle_lifecycle-common",
"androidx.legacy_legacy-support-v4",
"androidx.lifecycle_lifecycle-runtime",
"androidx.recyclerview_recyclerview",
"androidx.preference_preference",
"androidx.appcompat_appcompat",
"androidx.legacy_legacy-preference-v14",
"androidx.coordinatorlayout_coordinatorlayout",
"androidx.core_core",
"androidx.fragment_fragment",
"androidx.lifecycle_lifecycle-runtime",
"androidx.loader_loader",
"androidx.localbroadcastmanager_localbroadcastmanager",
"androidx.preference_preference",
"androidx.recyclerview_recyclerview",
"SettingsLib",
],
}

View File

@@ -19,15 +19,17 @@
# NOTE: keep this file and ./Android.bp in sync.
LOCAL_STATIC_JAVA_LIBRARIES += \
androidx.annotation_annotation \
androidx.lifecycle_lifecycle-common
androidx.annotation_annotation
LOCAL_STATIC_ANDROID_LIBRARIES += \
androidx.legacy_legacy-support-v4 \
androidx.lifecycle_lifecycle-runtime \
androidx.recyclerview_recyclerview \
androidx.preference_preference \
androidx.appcompat_appcompat \
androidx.legacy_legacy-preference-v14 \
androidx.coordinatorlayout_coordinatorlayout \
androidx.core_core \
androidx.fragment_fragment \
androidx.lifecycle_lifecycle-runtime \
androidx.loader_loader \
androidx.localbroadcastmanager_localbroadcastmanager \
androidx.preference_preference \
androidx.recyclerview_recyclerview \
SettingsLib