summaryrefslogtreecommitdiffstats
path: root/mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml')
-rw-r--r--mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml14
1 files changed, 14 insertions, 0 deletions
diff --git a/mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml b/mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml
new file mode 100644
index 0000000000..5ca893c9da
--- /dev/null
+++ b/mobile/android/android-components/components/support/utils/src/main/AndroidManifest.xml
@@ -0,0 +1,14 @@
+<!-- This Source Code Form is subject to the terms of the Mozilla Public
+ - License, v. 2.0. If a copy of the MPL was not distributed with this file,
+ - You can obtain one at http://mozilla.org/MPL/2.0/. -->
+<manifest xmlns:android="http://schemas.android.com/apk/res/android">
+ <!-- Adds the ability to discover apps that have matching <intent-filter> elements.
+ Needed for PackageManager.queryIntentActivities calls.
+ See https://developer.android.com/training/package-visibility/declaring for more details.-->
+ <queries>
+ <intent>
+ <action android:name="android.intent.action.SEND" />
+ <data android:mimeType="text/plain" />
+ </intent>
+ </queries>
+</manifest> \ No newline at end of file