mirror of
https://github.com/beemdevelopment/Aegis.git
synced 2025-05-31 20:02:17 +00:00
161 lines
6.6 KiB
XML
161 lines
6.6 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">
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
|
|
|
<!-- NOTE: Disabled for now. See issue: #1047
|
|
<uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
|
|
-->
|
|
|
|
<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_old"
|
|
android:dataExtractionRules="@xml/backup_rules"
|
|
android:backupAgent=".AegisBackupAgent"
|
|
android:enableOnBackInvokedCallback="true"
|
|
android:icon="@mipmap/${iconName}"
|
|
android:label="Aegis"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/Theme.Aegis.Launch"
|
|
tools:replace="android:theme"
|
|
tools:targetApi="tiramisu">
|
|
<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" />
|
|
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
<data android:mimeType="image/*" />
|
|
<data android:mimeType="text/plain" />
|
|
</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.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" />
|
|
|
|
<!-- NOTE: Disabled for now. See issue: #1047
|
|
<service android:name=".services.NotificationService" />
|
|
-->
|
|
|
|
<service
|
|
android:name=".services.LaunchAppTileService"
|
|
android:label="@string/tile_open_vault"
|
|
android:icon="@drawable/ic_aegis_quicksettings"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.service.quicksettings.ACTIVE_TILE"
|
|
android:value="true" />
|
|
</service>
|
|
|
|
<service
|
|
android:name=".services.LaunchScannerTileService"
|
|
android:label="@string/tile_open_scanner"
|
|
android:icon="@drawable/ic_aegis_quicksettings"
|
|
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.service.quicksettings.action.QS_TILE" />
|
|
</intent-filter>
|
|
<meta-data android:name="android.service.quicksettings.ACTIVE_TILE"
|
|
android:value="true" />
|
|
</service>
|
|
|
|
<receiver android:name=".receivers.VaultLockReceiver" android:exported="false">
|
|
<intent-filter>
|
|
<action android:name="${applicationId}.LOCK_VAULT" />
|
|
</intent-filter>
|
|
</receiver>
|
|
|
|
<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="me.jmh.authenticatorpro" />
|
|
<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" />
|
|
<package android:name="com.blizzard.bma" />
|
|
</queries>
|
|
|
|
</manifest>
|