mirror of
https://github.com/gsantner/dandelion
synced 2025-09-10 02:39:43 +02:00
make difference intent with/without extra_subject
This commit is contained in:
parent
7f2eda535b
commit
f439be77d7
2 changed files with 49 additions and 11 deletions
|
@ -49,13 +49,19 @@
|
|||
android:label="@string/new_post"
|
||||
android:theme="@style/AppTheme.NoActionBar"
|
||||
android:screenOrientation="portrait" >
|
||||
<intent-filter android:label="@string/new_post"
|
||||
android:icon="@drawable/ic_launcher">
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="text/*" />
|
||||
<data android:mimeType="image/*" />
|
||||
<data android:mimeType="text/plain" />
|
||||
</intent-filter>
|
||||
|
||||
<!-- //TODO Handle single image being sent
|
||||
<intent-filter>
|
||||
<action android:name="android.intent.action.SEND_MULTIPLE" />
|
||||
<category android:name="android.intent.category.DEFAULT" />
|
||||
<data android:mimeType="image/*" />
|
||||
</intent-filter>-->
|
||||
|
||||
</activity>
|
||||
|
||||
<service
|
||||
|
@ -66,3 +72,6 @@
|
|||
|
||||
</application>
|
||||
</manifest>
|
||||
|
||||
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue