Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 72f667e3 authored by Joshua Mokut's avatar Joshua Mokut Committed by Android (Google) Code Review
Browse files

Merge "Use correct package name to create Icons for Apps" into main

parents 9b15aed3 48fa1b22
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -77,6 +77,7 @@ class InputGestureDataAdapterTest : SysuiTestCase() {
            name = FAKE_ACTIVITY_NAME
            icon = 0x1
            nonLocalizedLabel = TEST_SHORTCUT_LABEL
            packageName = TEST_ROLE_PACKAGE
        }
    private val mockSelectorIntent: Intent = mock()

+1 −1
Original line number Diff line number Diff line
@@ -123,7 +123,7 @@ constructor(
        return if (resolvedActivity == null) {
            null
        } else {
            Icon.createWithResource(context, resolvedActivity.iconResource)
            Icon.createWithResource(resolvedActivity.packageName, resolvedActivity.iconResource)
        }
    }