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

Commit 78700601 authored by Chaohui Wang's avatar Chaohui Wang Committed by Android (Google) Code Review
Browse files

Merge "Set showInstantApps = true for All App List"

parents 21ae4c48 9e7c6d5e
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -66,6 +66,7 @@ private fun AllAppListPage() {
    AppListPage(
        title = stringResource(R.string.all_apps),
        listModel = rememberContext(::AllAppListModel),
        showInstantApps = true,
    ) { itemModel ->
        AppListItem(
            itemModel = itemModel,
+1 −1
Original line number Diff line number Diff line
@@ -58,7 +58,7 @@ class AppDisableButton(
        if (!app.hasFlag(ApplicationInfo.FLAG_SYSTEM)) return null

        return when {
            app.enabled && !app.isDisabledUntilUsed() -> {
            app.enabled && !app.isDisabledUntilUsed -> {
                disableButton(enabled = isDisableButtonEnabled(packageInfo))
            }