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
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index cca450a..06d5800 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -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"