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

Commit c26d59f6 authored by Jeff Sharkey's avatar Jeff Sharkey
Browse files

Fix activity-alias encryption awareness bug.

Since the activity-alias is backed by the same code as the original
activity definition, they should both have an identical encryption
awareness.  This fixes a bug where we accidentally dropped that value.

Bug: 26731340
Change-Id: I6ad615332df7d16542893a49e6997c88fc24334b
parent f2021435
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3491,6 +3491,7 @@ public class PackageParser {
        info.maxRecents = target.info.maxRecents;
        info.layout = target.info.layout;
        info.resizeMode = target.info.resizeMode;
        info.encryptionAware = target.info.encryptionAware;

        Activity a = new Activity(mParseActivityAliasArgs, info);
        if (outError[0] != null) {