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

Commit decf60b4 authored by Steve Kondik's avatar Steve Kondik
Browse files

pm: Skip custom resolver use when mOnlyCore

 * It just throws exceptions.

Change-Id: I503a2b787a661b3ab5c52b675e49f2eae92c9ec0
parent 81208c44
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4730,7 +4730,7 @@ public class PackageManagerService extends IPackageManager.Stub {
    private boolean shouldIncludeResolveActivity(Intent intent) {
        // Don't call into AppSuggestManager before it comes up later in the SystemServer init!
        if (!mSystemReady) {
        if (!mSystemReady || mOnlyCore) {
            return false;
        }
        synchronized(mPackages) {