2018-12-07 20:11:50 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-07-04 04:17:16 +00:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
|
|
package="org.mozilla.fenix">
|
2018-12-07 20:11:50 +00:00
|
|
|
|
2019-01-28 21:26:28 +00:00
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
2019-10-29 17:09:07 +00:00
|
|
|
<uses-permission android:name="android.permission.ACCESS_NETWORK_STATE" />
|
2019-07-04 04:17:16 +00:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION" />
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
|
2019-02-28 21:10:52 +00:00
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
2019-11-22 18:56:29 +00:00
|
|
|
<uses-permission android:name="com.android.launcher.permission.INSTALL_SHORTCUT" />
|
2019-11-08 21:37:36 +00:00
|
|
|
<uses-permission android:name="android.permission.VIBRATE" />
|
2019-11-22 18:56:29 +00:00
|
|
|
<uses-permission android:name="android.permission.USE_BIOMETRIC" />
|
2019-01-28 21:26:28 +00:00
|
|
|
|
2019-03-07 21:54:01 +00:00
|
|
|
<!-- Needed to prompt the user to give permission to install a downloaded apk -->
|
|
|
|
<uses-permission-sdk-23 android:name="android.permission.REQUEST_INSTALL_PACKAGES" />
|
|
|
|
|
2018-12-07 20:11:50 +00:00
|
|
|
<application
|
2019-07-04 04:17:16 +00:00
|
|
|
android:name=".FenixApplication"
|
2019-07-16 15:28:18 +00:00
|
|
|
android:allowBackup="false"
|
2019-07-04 04:17:16 +00:00
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:supportsRtl="true"
|
|
|
|
android:theme="@style/NormalTheme"
|
|
|
|
android:usesCleartextTraffic="true"
|
|
|
|
tools:ignore="UnusedAttribute">
|
2019-11-29 17:19:14 +00:00
|
|
|
|
|
|
|
<!--
|
2019-12-17 10:01:03 +00:00
|
|
|
We inherited this entry (${applicationId}.App) from Fennec. We need to keep this as our
|
2020-01-25 02:03:25 +00:00
|
|
|
main launcher to avoid launcher icons on the home screen disappearing for all our users.
|
2020-01-15 18:57:22 +00:00
|
|
|
|
2020-01-25 02:03:25 +00:00
|
|
|
Note that `fennec*` build types override the targetActivity property in the Manifest
|
|
|
|
inside their source set.
|
2019-11-29 17:19:14 +00:00
|
|
|
-->
|
|
|
|
<activity-alias
|
2019-12-17 10:01:03 +00:00
|
|
|
android:name="${applicationId}.App"
|
2020-01-25 02:03:25 +00:00
|
|
|
android:targetActivity=".HomeActivity">
|
2018-12-07 20:11:50 +00:00
|
|
|
<intent-filter>
|
2019-07-04 04:17:16 +00:00
|
|
|
<action android:name="android.intent.action.MAIN" />
|
2018-12-07 20:11:50 +00:00
|
|
|
|
2019-07-04 04:17:16 +00:00
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
2018-12-07 20:11:50 +00:00
|
|
|
</intent-filter>
|
2019-08-14 20:48:45 +00:00
|
|
|
|
2019-11-29 17:19:14 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="android.app.shortcuts"
|
|
|
|
android:resource="@xml/shortcuts" />
|
|
|
|
</activity-alias>
|
|
|
|
|
2020-01-07 17:07:51 +00:00
|
|
|
<!--
|
|
|
|
Fennec declared entry for homescreen pinned shortcuts.
|
|
|
|
-->
|
|
|
|
<activity-alias
|
|
|
|
android:name="org.mozilla.gecko.BrowserApp"
|
2020-01-16 17:35:10 +00:00
|
|
|
android:targetActivity=".IntentReceiverActivity"
|
|
|
|
android:exported="true">
|
2020-01-07 17:07:51 +00:00
|
|
|
</activity-alias>
|
|
|
|
|
2020-02-06 14:23:11 +00:00
|
|
|
<!-- Activity alias from Fennec used by PWA launchers on the home screen -->
|
|
|
|
<activity-alias
|
|
|
|
android:name="org.mozilla.gecko.LauncherActivity"
|
|
|
|
android:targetActivity=".IntentReceiverActivity">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="org.mozilla.gecko.WEBAPP" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity-alias>
|
|
|
|
|
2019-11-29 17:19:14 +00:00
|
|
|
<activity
|
|
|
|
android:name=".HomeActivity"
|
2020-01-04 02:15:35 +00:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|layoutDirection|smallestScreenSize|screenLayout"
|
2019-11-29 17:19:14 +00:00
|
|
|
android:launchMode="singleTask"
|
2020-04-07 05:15:04 +00:00
|
|
|
android:resizeableActivity="true"
|
|
|
|
android:supportsPictureInPicture="true"
|
2019-11-29 17:19:14 +00:00
|
|
|
android:windowSoftInputMode="adjustResize">
|
2019-08-14 20:48:45 +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" />
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="home"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="settings"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="turn_on_sync"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="settings_search_engine"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="settings_accessibility"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="settings_delete_browsing_data"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="enable_private_browsing"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="open"/>
|
2020-02-27 15:43:43 +00:00
|
|
|
<data android:scheme="${deepLinkScheme}"
|
2019-08-14 20:48:45 +00:00
|
|
|
android:host="make_default_browser"/>
|
|
|
|
</intent-filter>
|
2019-01-29 20:46:11 +00:00
|
|
|
</activity>
|
|
|
|
|
2019-07-04 04:17:16 +00:00
|
|
|
<activity
|
2019-09-19 16:12:42 +00:00
|
|
|
android:name=".customtabs.ExternalAppBrowserActivity"
|
2019-07-04 04:17:16 +00:00
|
|
|
android:autoRemoveFromRecents="false"
|
2020-01-04 02:15:35 +00:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|layoutDirection|smallestScreenSize|screenLayout"
|
2019-07-04 04:17:16 +00:00
|
|
|
android:exported="false"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:persistableMode="persistNever"
|
|
|
|
android:taskAffinity=""
|
2020-04-07 05:15:04 +00:00
|
|
|
android:resizeableActivity="true"
|
|
|
|
android:supportsPictureInPicture="true"
|
2019-07-04 04:17:16 +00:00
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
|
|
|
|
2020-02-21 14:02:13 +00:00
|
|
|
<activity
|
|
|
|
android:name=".IntentReceiverActivity"
|
|
|
|
android:theme="@style/Theme.Transparent"
|
|
|
|
android:relinquishTaskIdentity="true"
|
|
|
|
android:taskAffinity=""
|
|
|
|
android:exported="true"
|
|
|
|
android:excludeFromRecents="true" >
|
|
|
|
|
2019-01-29 20:46:11 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-07-04 04:17:16 +00:00
|
|
|
|
2019-01-29 20:46:11 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2019-10-08 15:40:28 +00:00
|
|
|
<category android:name="mozilla.components.pwa.category.SHORTCUT" />
|
2019-01-29 20:46:11 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
2019-01-09 22:45:40 +00:00
|
|
|
|
|
|
|
<intent-filter>
|
2019-01-30 22:46:05 +00:00
|
|
|
<action android:name="android.intent.action.VIEW" />
|
2019-07-04 04:17:16 +00:00
|
|
|
|
2019-01-30 22:46:05 +00:00
|
|
|
<category android:name="android.intent.category.BROWSABLE" />
|
2019-01-29 20:46:11 +00:00
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
2019-07-04 04:17:16 +00:00
|
|
|
|
2019-01-30 22:46:05 +00:00
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
2019-07-04 04:17:16 +00:00
|
|
|
<data android:mimeType="text/html" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
<data android:mimeType="application/xhtml+xml" />
|
2019-01-09 22:45:40 +00:00
|
|
|
</intent-filter>
|
2019-02-13 00:44:55 +00:00
|
|
|
|
2019-03-18 16:59:25 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEND" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:mimeType="text/plain" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-12-29 21:17:56 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.SEARCH" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data android:name="android.app.searchable"
|
|
|
|
android:resource="@xml/searchable"/>
|
|
|
|
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.WEB_SEARCH" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-10-08 23:50:16 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="mozilla.components.feature.pwa.VIEW_PWA" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-02-13 00:44:55 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.ASSIST" />
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-10-25 03:04:57 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
|
|
|
<category android:name="android.intent.category.DEFAULT" />
|
|
|
|
<data android:scheme="http" />
|
|
|
|
<data android:scheme="https" />
|
|
|
|
</intent-filter>
|
|
|
|
|
2019-02-13 00:44:55 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="com.android.systemui.action_assist_icon"
|
2019-07-04 04:17:16 +00:00
|
|
|
android:resource="@mipmap/ic_launcher" />
|
2019-12-29 21:17:56 +00:00
|
|
|
|
2018-12-07 20:11:50 +00:00
|
|
|
</activity>
|
2019-01-30 20:02:11 +00:00
|
|
|
|
2020-01-15 18:57:22 +00:00
|
|
|
<activity
|
|
|
|
android:name=".migration.MigrationProgressActivity"
|
|
|
|
android:launchMode="singleInstance"
|
|
|
|
android:exported="false">
|
|
|
|
</activity>
|
|
|
|
|
2019-09-27 14:54:29 +00:00
|
|
|
<activity android:name=".widget.VoiceSearchActivity" />
|
|
|
|
|
2019-07-04 04:17:16 +00:00
|
|
|
<activity
|
|
|
|
android:name=".browser.BrowserPerformanceTestActivity"
|
|
|
|
android:enabled="${isRaptorEnabled}"
|
|
|
|
android:exported="${isRaptorEnabled}" />
|
2019-02-22 20:34:30 +00:00
|
|
|
|
2019-09-26 17:15:12 +00:00
|
|
|
<activity
|
|
|
|
android:name=".settings.account.AuthCustomTabActivity"
|
|
|
|
android:autoRemoveFromRecents="false"
|
2020-01-04 02:15:35 +00:00
|
|
|
android:configChanges="keyboard|keyboardHidden|mcc|mnc|orientation|screenSize|layoutDirection|smallestScreenSize|screenLayout"
|
2019-09-26 17:15:12 +00:00
|
|
|
android:exported="false"
|
|
|
|
android:taskAffinity=""
|
|
|
|
android:windowSoftInputMode="adjustResize|stateAlwaysHidden" />
|
|
|
|
|
|
|
|
<activity android:name=".settings.account.AuthIntentReceiverActivity"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-08-07 16:37:56 +00:00
|
|
|
<activity android:name="com.google.android.gms.oss.licenses.OssLicensesMenuActivity"
|
2020-01-25 01:41:23 +00:00
|
|
|
android:exported="false"
|
2019-08-07 16:37:56 +00:00
|
|
|
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"/>
|
|
|
|
|
|
|
|
<activity android:name="com.google.android.gms.oss.licenses.OssLicensesActivity"
|
2020-01-25 01:41:23 +00:00
|
|
|
android:exported="false"
|
2019-08-07 16:37:56 +00:00
|
|
|
android:theme="@style/Theme.AppCompat.DayNight.DarkActionBar"/>
|
|
|
|
|
2020-03-26 18:20:59 +00:00
|
|
|
<service android:name=".media.MediaService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-01-31 17:58:52 +00:00
|
|
|
<service
|
2019-07-04 04:17:16 +00:00
|
|
|
android:name=".customtabs.CustomTabsService"
|
|
|
|
android:exported="true"
|
|
|
|
tools:ignore="ExportedService">
|
2019-01-31 17:58:52 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.support.customtabs.action.CustomTabsService" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
2019-07-12 22:21:02 +00:00
|
|
|
|
2019-08-03 00:28:30 +00:00
|
|
|
<service android:name=".downloads.DownloadService" />
|
2019-07-11 17:24:58 +00:00
|
|
|
<receiver
|
2019-12-16 13:01:47 +00:00
|
|
|
android:name="org.mozilla.gecko.search.SearchWidgetProvider">
|
2019-07-11 17:24:58 +00:00
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
|
|
|
|
</intent-filter>
|
|
|
|
<meta-data
|
|
|
|
android:name="android.appwidget.provider"
|
|
|
|
android:resource="@xml/search_widget_info" />
|
|
|
|
</receiver>
|
|
|
|
|
2019-08-28 19:55:24 +00:00
|
|
|
<service android:name=".session.SessionNotificationService"
|
|
|
|
android:exported="false" />
|
|
|
|
|
2019-07-12 22:21:02 +00:00
|
|
|
<service
|
2020-01-23 23:03:04 +00:00
|
|
|
android:name=".components.FirebasePushService"
|
2019-07-12 22:21:02 +00:00
|
|
|
android:exported="false">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="com.google.firebase.MESSAGING_EVENT" />
|
|
|
|
</intent-filter>
|
|
|
|
</service>
|
|
|
|
|
|
|
|
<meta-data
|
|
|
|
android:name="firebase_messaging_auto_init_enabled"
|
2020-01-16 05:10:07 +00:00
|
|
|
android:value="true" />
|
2019-07-12 22:21:02 +00:00
|
|
|
<meta-data
|
|
|
|
android:name="firebase_analytics_collection_enabled"
|
|
|
|
android:value="false" />
|
2018-12-07 20:11:50 +00:00
|
|
|
</application>
|
|
|
|
|
2019-02-02 05:03:04 +00:00
|
|
|
</manifest>
|