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

Commit 9abb2cb5 authored by Todd Kennedy's avatar Todd Kennedy Committed by android-build-merger
Browse files

Merge "Always add the instant app installer" into oc-dev

am: e943a3cb

Change-Id: I2f057e4d0367fd47050c30340490987ef6d2128a
parents 95e1ef69 e943a3cb
Loading
Loading
Loading
Loading
+8 −4
Original line number Diff line number Diff line
@@ -6491,18 +6491,22 @@ public class PackageManagerService extends IPackageManager.Stub
                }
            } else {
                final PackageParser.Package pkg = mPackages.get(pkgName);
                result = null;
                if (pkg != null) {
                    return applyPostResolutionFilter(filterIfNotSystemUser(
                    result = filterIfNotSystemUser(
                            mActivities.queryIntentForPackage(
                                    intent, resolvedType, flags, pkg.activities, userId),
                            userId), instantAppPkgName);
                } else {
                            userId);
                }
                if (result == null || result.size() == 0) {
                    // the caller wants to resolve for a particular package; however, there
                    // were no installed results, so, try to find an ephemeral result
                    addEphemeral = !ephemeralDisabled
                            && isInstantAppAllowed(
                                    intent, null /*result*/, userId, true /*skipPackageCheck*/);
                    result = new ArrayList<ResolveInfo>();
                    if (result == null) {
                        result = new ArrayList<>();
                    }
                }
            }
        }