mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-31 11:52:18 +00:00
122 lines
4.9 KiB
XML
122 lines
4.9 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
package="com.beemdevelopment.aegis">
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
|
|
<uses-feature
|
|
android:name="android.hardware.camera"
|
|
android:required="false" />
|
|
<uses-feature
|
|
android:name="android.hardware.camera.autofocus"
|
|
android:required="false" />
|
|
|
|
<application
|
|
android:name=".AegisApplication"
|
|
android:allowBackup="true"
|
|
android:fullBackupOnly="true"
|
|
android:fullBackupContent="@xml/backup_rules"
|
|
android:backupAgent=".AegisBackupAgent"
|
|
android:icon="@mipmap/${iconName}"
|
|
android:label="Aegis"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Aegis.Launch"
|
|
tools:replace="android:theme">
|
|
<activity android:name=".ui.TransferEntriesActivity"
|
|
android:label="@string/title_activity_transfer" />
|
|
<activity
|
|
android:name=".ui.AboutActivity"
|
|
android:label="@string/title_activity_about" />
|
|
<activity
|
|
android:name=".ui.ImportEntriesActivity"
|
|
android:label="@string/title_activity_import_entries" />
|
|
<activity
|
|
android:name=".ui.MainActivity"
|
|
android:exported="true"
|
|
android:label="${title}">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.VIEW" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
|
|
|
<data android:scheme="otpauth" />
|
|
</intent-filter>
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="image/*" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity
|
|
android:name=".ui.ScannerActivity"
|
|
android:configChanges="keyboardHidden|orientation|screenSize"
|
|
android:label="@string/title_activity_scan_qr"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".ui.EditEntryActivity"
|
|
android:label="@string/title_activity_edit_entry" />
|
|
<activity
|
|
android:name=".ui.IntroActivity"
|
|
android:screenOrientation="portrait" />
|
|
<activity
|
|
android:name=".ui.AuthActivity" />
|
|
<activity
|
|
android:name=".ui.PreferencesActivity"
|
|
android:label="@string/title_activity_preferences" />
|
|
<activity
|
|
android:name=".ui.SlotManagerActivity"
|
|
android:label="@string/title_activity_manage_slots" />
|
|
<activity
|
|
android:name=".ui.GroupManagerActivity"
|
|
android:label="@string/title_activity_manage_groups" />
|
|
<activity
|
|
android:name=".ui.PanicResponderActivity"
|
|
android:exported="true"
|
|
android:launchMode="singleInstance"
|
|
android:noHistory="true"
|
|
android:theme="@android:style/Theme.NoDisplay">
|
|
<intent-filter>
|
|
<action android:name="info.guardianproject.panic.action.TRIGGER" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
</intent-filter>
|
|
</activity>
|
|
<activity android:name=".ui.ExitActivity" />
|
|
|
|
<service android:name=".services.NotificationService" />
|
|
|
|
<provider
|
|
android:name="androidx.core.content.FileProvider"
|
|
android:authorities="${fileProviderAuthority}"
|
|
android:exported="false"
|
|
android:grantUriPermissions="true">
|
|
<meta-data
|
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
|
android:resource="@xml/file_paths">
|
|
</meta-data>
|
|
</provider>
|
|
|
|
<meta-data android:name="android.webkit.WebView.MetricsOptOut" android:value="true" />
|
|
</application>
|
|
|
|
<queries>
|
|
<package android:name="com.authy.authy" />
|
|
<package android:name="org.fedorahosted.freeotp" />
|
|
<package android:name="org.liberty.android.freeotpplus" />
|
|
<package android:name="com.google.android.apps.authenticator2" />
|
|
<package android:name="com.azure.authenticator" />
|
|
<package android:name="com.valvesoftware.android.steam.community" />
|
|
<package android:name="com.authenticator.authservice2" />
|
|
<package android:name="com.duosecurity.duomobile" />
|
|
</queries>
|
|
|
|
</manifest>
|