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

Commit b8315f12 authored by Sandy Pan's avatar Sandy Pan
Browse files

Exclude activity from recents for supervision PIN related activity

Bug: 416492063
Flag: android.app.supervision.flags.supervision_manager_apis
Test: EXEMPT
Change-Id: I158de926e16157d4cd7a824138488ce5f4714bf3
parent 0b07b58f
Loading
Loading
Loading
Loading
+8 −2
Original line number Diff line number Diff line
@@ -2825,6 +2825,7 @@

        <activity android:name=".supervision.ConfirmSupervisionCredentialsActivity"
            android:exported="true"
            android:excludeFromRecents="true"
            android:featureFlag="android.app.supervision.flags.supervision_manager_apis">
            <intent-filter>
                <action android:name="android.app.supervision.action.CONFIRM_SUPERVISION_CREDENTIALS" />
@@ -2832,13 +2833,18 @@
            </intent-filter>
        </activity>

        <activity android:name=".supervision.SetupSupervisionActivity" android:exported="false" />
        <activity android:name=".supervision.SetupSupervisionActivity"
            android:excludeFromRecents="true"
            android:exported="false" />

        <activity
            android:name=".supervision.SupervisionPinRecoveryActivity"
            android:excludeFromRecents="true"
            android:exported="false" />

        <activity android:name=".supervision.SupervisionCredentialProxyActivity" android:exported="false"/>
        <activity android:name=".supervision.SupervisionCredentialProxyActivity"
            android:excludeFromRecents="true"
            android:exported="false"/>

        <activity android:name=".SetupRedactionInterstitial"
            android:enabled="false"