diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-10-02 11:00:45 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-10-02 11:00:45 +0530 |
commit | 9a1a54a6fcfa6fd6cf142f2af9804375255d14cf (patch) | |
tree | 5535d9be1196a6a1f98719e2f92e0e26cd92cc5d /app/src/main/AndroidManifest.xml | |
parent | 27592dde1087804442ea37e17c2e13aad5c72b01 (diff) |
Initial biometric authentication support (#541)
* [WIP] Initial biometric authentication support
* Redirect decryption app shortcut to go through LaunchActivity
* UserPreference: Clear existing shortcuts when toggling password auth
Clears out any auth-bypassed entries that exist
* Fix hilarious copypasta derp
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index abe12820..21131dde 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -11,6 +11,9 @@ android:name="android.permission.BIND_ACCESSIBILITY_SERVICE" tools:ignore="ProtectedPermissions" /> <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> + <uses-permission android:name="android.permission.USE_BIOMETRIC" /> + <!--suppress DeprecatedClassUsageInspection --> + <uses-permission android:name="android.permission.USE_FINGERPRINT" /> <application android:allowBackup="false" @@ -19,10 +22,15 @@ android:supportsRtl="true" android:theme="@style/AppTheme" tools:ignore="GoogleAppIndexingWarning"> + <activity android:name=".PasswordStore" android:configChanges="orientation|screenSize" - android:label="@string/app_name"> + android:label="@string/app_name" /> + + <activity android:name=".LaunchActivity" + android:label="@string/app_name" + android:configChanges="orientation|screenSize"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> |