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

Commit 4595978b authored by Maurice Lam's avatar Maurice Lam Committed by Android (Google) Code Review
Browse files

Merge "[Fingerprint] Add fingerprint enroll in setup wizard" into mnc-dev

parents 6b9d7889 8d1f9c9b
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -1434,9 +1434,16 @@
        <activity android:name=".fingerprint.FingerprintEnrollFindSensor" android:exported="false"/>
        <activity android:name=".fingerprint.FingerprintEnrollEnrolling" android:exported="false"/>
        <activity android:name=".fingerprint.FingerprintEnrollFinish" android:exported="false"/>
        <activity android:name=".fingerprint.FingerprintEnrollIntroduction"
        <activity android:name=".fingerprint.FingerprintEnrollIntroduction" android:exported="false" />

        <activity android:name=".fingerprint.SetupFingerprintEnrollOnboard" android:exported="false"/>
        <activity android:name=".fingerprint.SetupFingerprintEnrollFindSensor" android:exported="false"/>
        <activity android:name=".fingerprint.SetupFingerprintEnrollEnrolling" android:exported="false"/>
        <activity android:name=".fingerprint.SetupFingerprintEnrollFinish" android:exported="false"/>
        <activity android:name=".fingerprint.SetupFingerprintEnrollIntroduction"
            android:exported="true"
            android:permission="android.permission.MANAGE_FINGERPRINT">
            android:permission="android.permission.MANAGE_FINGERPRINT"
            android:theme="@style/SetupWizardDisableAppStartingTheme">
            <intent-filter>
                <action android:name="android.settings.FINGERPRINT_SETUP" />
                <category android:name="android.intent.category.DEFAULT" />
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    android:id="@+id/setup_wizard_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/SetupWizardFingerprintStyle">
    style="?attr/fingerprint_layout_theme">

    <LinearLayout
        style="@style/SuwContentFrame"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    android:id="@+id/setup_wizard_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/SetupWizardFingerprintStyle">
    style="?attr/fingerprint_layout_theme">

    <LinearLayout
        style="@style/SuwContentFrame"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    android:id="@+id/setup_wizard_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/SetupWizardFingerprintStyle">
    style="?attr/fingerprint_layout_theme">

    <LinearLayout
        style="@style/SuwContentFrame"
+1 −1
Original line number Diff line number Diff line
@@ -20,7 +20,7 @@
    android:id="@+id/setup_wizard_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    style="@style/SetupWizardFingerprintStyle">
    style="?attr/fingerprint_layout_theme">

    <LinearLayout
        style="@style/SuwContentFrame"
Loading