diff options
author | 2022-10-18 13:41:42 -0400 | |
---|---|---|
committer | 2022-10-18 13:41:42 -0400 | |
commit | 61d7310a22f86c9f1585e01868d6f5cd891ad770 (patch) | |
tree | e52f4e5d085cc7b1c9a3b6e178fc581b994d600a /Android.bp | |
parent | dade67f8df439de57c3d2c30a72f2887baf43015 (diff) |
Re-enable r8 optimization in IntentResolver
The previous "un-kept symbol" problem (with ChooserGridLayoutAdapter)
was inadvertently fixed by ag/20120577 (confirmed by going back to
check `apkdiffstats` before-and-after to note that the old crash is
due to a method that was only "un-kept" in the old version that still
shared framework RecyclerView). Manual review of other un-kept
symbols under `com.android.intentresolver.*` all seemed reasonable in
this new CL. For more info, see discussion on b/249159065.
Bug: 249159065, 249081140
Test: manual, and `atest IntentResolverUnitTests`
Change-Id: Ia6cf5dd80ba3ec16038225ccdac5203782c3db1f
Diffstat (limited to 'Android.bp')
-rw-r--r-- | Android.bp | 5 |
1 files changed, 1 insertions, 4 deletions
@@ -71,10 +71,7 @@ android_app { "IntentResolver-core", ], optimize: { - // TODO: consider re-enabling after setting up Proguard rules to - // preserve the name of the ChooserGridLayoutManager class, which is - // referenced by name in the chooser_list_per_profile layout XML. - enabled: false, + enabled: true, }, apex_available: [ "//apex_available:platform", |