aboutsummaryrefslogtreecommitdiffstats
path: root/src/main/AndroidManifest.xml
diff options
context:
space:
mode:
authorChristian Schneppe <christian@pix-art.de>2019-01-25 22:28:04 +0100
committerChristian Schneppe <christian@pix-art.de>2019-01-25 22:28:04 +0100
commitd93d92dee3add2bf293a177fd5d8afdbd691f684 (patch)
tree01816897b2186c93dd38f0ac1c76dcb082185666 /src/main/AndroidManifest.xml
parent83258c8a19d64fc4e451a57fc8097391b0437b75 (diff)
make contact chooser (direct sharing) smart about sharing text in groups when http is not available
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r--src/main/AndroidManifest.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml
index 4eeb4c367..9e92dd8bb 100644
--- a/src/main/AndroidManifest.xml
+++ b/src/main/AndroidManifest.xml
@@ -217,6 +217,12 @@
<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="text/plain" />
+ </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="*/*" />