Remote authenticator enrollment navigation.

This change adds an entry point for Remote Auth enrollment and
navigation through the flow.

Bug: b/293906345
Test: make RunSettingsRoboTests -j40
Change-Id: I9bc803e24c4181ed73a0ef90b171897c677e71d1
This commit is contained in:
Justin McClain
2023-08-16 20:53:02 +00:00
parent 0127c488e4
commit 7e837fae82
15 changed files with 329 additions and 21 deletions

View File

@@ -2610,6 +2610,18 @@
<activity android:name=".biometrics.activeunlock.ActiveUnlockRequireBiometricSetup" android:exported="false"/>
<activity android:name=".remoteauth.RemoteAuthActivity"
android:exported="true">
<intent-filter>
<action android:name="android.settings.REMOTE_AUTHENTICATOR_ENROLL" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity android:name=".remoteauth.RemoteAuthActivityInternal"
android:exported="false"
android:taskAffinity="com.android.settings.root" />
<!-- Note this must not be exported since it returns the password in the intent -->
<activity android:name=".password.ConfirmLockPattern$InternalActivity"
android:exported="false"