FairEmail/app/src/main/AndroidManifest.xml

325 lines
12 KiB
XML
Raw Normal View History

2018-08-02 13:33:06 +00:00
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="eu.faircode.email">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" />
2018-08-10 16:06:39 +00:00
<uses-permission android:name="android.permission.READ_CONTACTS" />
2019-02-07 09:25:11 +00:00
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
2018-08-24 12:24:40 +00:00
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
2018-10-08 06:18:44 +00:00
<uses-permission android:name="android.permission.WAKE_LOCK" />
2018-08-25 13:32:52 +00:00
<uses-permission android:name="com.android.vending.BILLING" />
2019-07-10 15:58:26 +00:00
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
2018-08-02 13:33:06 +00:00
2019-09-18 14:34:07 +00:00
<!-- OAuth -->
<uses-permission android:name="android.permission.GET_ACCOUNTS" />
<uses-permission
android:name="android.permission.USE_CREDENTIALS"
android:maxSdkVersion="22" />
2019-11-22 12:08:55 +00:00
<uses-permission
android:name="android.permission.READ_PROFILE"
android:maxSdkVersion="22" />
2019-09-18 14:34:07 +00:00
2018-11-26 14:54:38 +00:00
<!-- https://developer.android.com/guide/topics/manifest/uses-feature-element#features-reference -->
2018-10-21 18:29:28 +00:00
<uses-feature
android:name="android.software.app_widgets"
android:required="false" />
2018-11-26 14:54:38 +00:00
<uses-feature
android:name="android.software.webview"
android:required="false" />
2019-05-09 10:19:43 +00:00
<uses-feature
android:name="android.hardware.camera"
android:required="false" />
2019-07-10 15:58:26 +00:00
<uses-feature
android:name="android.hardware.fingerprint"
android:required="false" />
2018-10-21 18:29:28 +00:00
2018-08-02 13:33:06 +00:00
<application
android:name=".ApplicationEx"
android:allowBackup="false"
android:appCategory="productivity"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:requestLegacyExternalStorage="true"
2018-08-02 13:33:06 +00:00
android:roundIcon="@mipmap/ic_launcher_round"
android:supportsRtl="true"
android:theme="@style/AppThemeLight">
<!-- do not contact Google servers -->
<meta-data
android:name="android.webkit.WebView.MetricsOptOut"
android:value="true" />
<meta-data
android:name="android.webkit.WebView.EnableSafeBrowsing"
android:value="false" />
<meta-data
android:name="android.allow_multiple_resumed_activities"
android:value="true" />
2018-08-04 16:54:57 +00:00
<activity
android:name=".ActivityMain"
2018-08-29 06:07:53 +00:00
android:excludeFromRecents="true"
2018-12-06 14:27:30 +00:00
android:exported="true"
2018-08-11 16:31:49 +00:00
android:launchMode="singleInstance"
2018-12-11 07:19:25 +00:00
android:theme="@style/Theme.AppCompat.Translucent">
2018-11-06 11:06:28 +00:00
2019-08-12 09:54:34 +00:00
<meta-data
android:name="android.app.shortcuts"
android:resource="@xml/shortcuts" />
2018-08-02 13:33:06 +00:00
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
2018-11-06 11:06:28 +00:00
2019-08-12 09:54:34 +00:00
<intent-filter>
<action android:name="${applicationId}.REFRESH" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
2018-08-02 13:33:06 +00:00
</activity>
<activity
android:name=".ActivitySetup"
2018-11-07 08:09:05 +00:00
android:exported="true"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask"
2019-01-14 12:44:25 +00:00
android:parentActivityName=".ActivityMain">
2019-08-12 09:54:34 +00:00
2018-11-07 08:09:05 +00:00
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<activity
android:name=".ActivityWidgetUnified"
android:exported="true">
2019-08-12 09:54:34 +00:00
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_CONFIGURE" />
</intent-filter>
</activity>
<activity
android:name=".ActivityView"
2018-12-06 14:27:30 +00:00
android:exported="false"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask"
2018-12-06 14:27:30 +00:00
android:parentActivityName=".ActivityMain" />
<activity
android:name=".ActivitySearch"
2018-12-27 16:49:37 +00:00
android:enabled="false"
2018-12-06 14:27:30 +00:00
android:excludeFromRecents="true"
android:exported="true"
2018-12-06 14:27:30 +00:00
android:icon="@mipmap/ic_launcher"
2019-05-12 10:15:51 +00:00
android:label="@string/app_search"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask"
2018-12-11 07:19:25 +00:00
android:theme="@style/Theme.AppCompat.Translucent">
2018-11-06 11:06:28 +00:00
<intent-filter>
<action android:name="android.intent.action.PROCESS_TEXT" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="text/plain" />
</intent-filter>
</activity>
2018-08-04 16:54:57 +00:00
<activity
android:name=".ActivityCompose"
2018-08-23 11:18:07 +00:00
android:exported="true"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask"
2018-08-23 11:18:07 +00:00
android:parentActivityName=".ActivityView">
2018-11-06 11:06:28 +00:00
2018-08-23 11:18:07 +00:00
<intent-filter>
<action android:name="android.intent.action.SEND" />
<action android:name="android.intent.action.SEND_MULTIPLE" />
2018-09-04 10:33:27 +00:00
<category android:name="android.intent.category.DEFAULT" />
2019-08-12 09:54:34 +00:00
<data android:mimeType="*/*" />
2018-09-04 10:33:27 +00:00
</intent-filter>
2018-11-06 11:06:28 +00:00
2018-09-04 10:33:27 +00:00
<intent-filter>
<action android:name="android.intent.action.SENDTO" />
<category android:name="android.intent.category.DEFAULT" />
2019-08-12 09:54:34 +00:00
<data android:scheme="mailto" />
2018-09-04 10:33:27 +00:00
</intent-filter>
2018-11-06 11:06:28 +00:00
2018-09-04 10:33:27 +00:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
2018-08-23 11:18:07 +00:00
<category android:name="android.intent.category.DEFAULT" />
2018-09-04 10:33:27 +00:00
<category android:name="android.intent.category.BROWSABLE" />
2019-08-12 09:54:34 +00:00
<data android:scheme="mailto" />
2018-08-23 11:18:07 +00:00
</intent-filter>
</activity>
2018-08-02 13:33:06 +00:00
2019-02-06 13:07:13 +00:00
<activity
2019-08-29 19:57:04 +00:00
android:name=".ActivityEML"
2019-02-06 13:07:13 +00:00
android:exported="true"
android:icon="@mipmap/ic_launcher"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask">
2019-02-06 13:07:13 +00:00
2019-02-07 12:35:06 +00:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:mimeType="message/rfc822" />
<data android:host="*" />
</intent-filter>
2019-02-06 13:07:13 +00:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
<data android:mimeType="*/*" />
<data android:host="*" />
<data android:pathPattern=".*\\.eml" />
<data android:pathPattern=".*\\..*\\.eml" />
<data android:pathPattern=".*\\..*\\..*\\.eml" />
<data android:pathPattern=".*\\..*\\..*\\..*\\.eml" />
<data android:pathPattern=".*\\..*\\..*\\..*\\..*\\.eml" />
</intent-filter>
</activity>
2019-03-17 09:18:40 +00:00
<activity
android:name=".ActivityDSN"
android:exported="true"
android:icon="@mipmap/ic_launcher"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask">
2019-03-17 09:18:40 +00:00
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="content" />
2019-03-18 18:09:21 +00:00
<data android:mimeType="message/delivery-status" />
2019-03-17 09:18:40 +00:00
<data android:mimeType="message/disposition-notification" />
2019-03-18 18:09:21 +00:00
<data android:mimeType="text/rfc822-headers" />
2019-03-17 09:18:40 +00:00
<data android:host="*" />
</intent-filter>
</activity>
2019-10-20 16:25:21 +00:00
<activity android:name="com.microsoft.identity.client.BrowserTabActivity">
<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:host="eu.faircode.email"
android:path="/F7oVwa9V2SX5i5nOpDddTN9MF0s="
android:scheme="msauth" />
</intent-filter>
</activity>
2019-08-13 08:27:17 +00:00
<activity
android:name=".ActivityBilling"
android:icon="@mipmap/ic_launcher"
2019-10-01 16:41:26 +00:00
android:launchMode="singleTask" />
2019-08-13 08:27:17 +00:00
2019-06-13 06:13:43 +00:00
<service
android:name=".ServiceSynchronize"
android:foregroundServiceType="dataSync" />
2018-08-02 13:33:06 +00:00
2019-06-13 06:13:43 +00:00
<service
android:name=".ServiceSend"
android:foregroundServiceType="dataSync" />
2019-02-27 15:05:15 +00:00
<service android:name=".ServiceUI" />
2019-06-13 06:13:43 +00:00
<service
android:name=".ServiceExternal"
android:foregroundServiceType="dataSync">
2019-08-12 09:54:34 +00:00
2019-02-14 13:28:14 +00:00
<intent-filter>
2019-09-24 17:45:46 +00:00
<action android:name="${applicationId}.POLL" />
2019-02-20 18:02:17 +00:00
<action android:name="${applicationId}.ENABLE" />
<action android:name="${applicationId}.DISABLE" />
2019-02-14 13:28:14 +00:00
</intent-filter>
</service>
2018-11-07 08:09:05 +00:00
<service
2018-11-07 12:10:58 +00:00
android:name=".ServiceTileSynchronize"
2018-11-09 16:05:10 +00:00
android:icon="@drawable/baseline_sync_disabled_24"
2018-11-09 16:16:41 +00:00
android:label="@string/app_name"
2018-11-07 12:10:58 +00:00
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
2019-08-12 09:54:34 +00:00
2018-11-07 12:10:58 +00:00
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
<service
android:name=".ServiceTileUnseen"
2018-11-09 16:05:10 +00:00
android:icon="@drawable/baseline_mail_outline_24"
2018-11-07 12:10:58 +00:00
android:label="@string/tile_unseen"
2018-11-07 08:09:05 +00:00
android:permission="android.permission.BIND_QUICK_SETTINGS_TILE">
2019-08-12 09:54:34 +00:00
2018-11-07 08:09:05 +00:00
<intent-filter>
<action android:name="android.service.quicksettings.action.QS_TILE" />
</intent-filter>
</service>
2018-08-04 12:49:44 +00:00
<provider
2018-08-08 06:55:47 +00:00
android:name="androidx.core.content.FileProvider"
2018-08-16 13:57:29 +00:00
android:authorities="${applicationId}"
2018-08-04 12:49:44 +00:00
android:exported="false"
android:grantUriPermissions="true">
2018-11-06 11:06:28 +00:00
2018-08-04 12:49:44 +00:00
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/fileprovider_paths" />
</provider>
2018-10-21 18:29:28 +00:00
<receiver
android:name=".Widget"
2019-11-15 12:05:31 +00:00
android:label="@string/title_widget_title_count">
2018-11-06 11:06:28 +00:00
2018-10-21 18:29:28 +00:00
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget" />
2019-08-12 09:54:34 +00:00
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
2018-10-21 18:29:28 +00:00
</receiver>
2019-07-25 13:33:21 +00:00
<receiver
android:name=".WidgetUnified"
2019-11-15 12:05:31 +00:00
android:label="@string/title_widget_title_list">
2019-07-25 13:33:21 +00:00
<meta-data
android:name="android.appwidget.provider"
android:resource="@xml/widget_unified" />
2019-08-12 09:54:34 +00:00
<intent-filter>
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
</intent-filter>
2019-07-25 13:33:21 +00:00
</receiver>
<service
android:name="WidgetUnifiedService"
2019-07-25 13:33:21 +00:00
android:permission="android.permission.BIND_REMOTEVIEWS" />
2019-06-07 12:18:32 +00:00
<receiver android:name=".ReceiverAutoStart">
2019-08-12 09:54:34 +00:00
2018-08-02 13:33:06 +00:00
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED" />
</intent-filter>
2018-11-06 11:06:28 +00:00
2018-08-02 13:33:06 +00:00
<intent-filter>
<action android:name="android.intent.action.MY_PACKAGE_REPLACED" />
</intent-filter>
</receiver>
</application>
</manifest>