Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

support for audio and multiple file type #24

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Multiple file support
  • Loading branch information
azharuddinkhan8898 authored May 6, 2020
commit 81bf707c609fc9ec41d7b899c2cf7caeebfd1b9e
9 changes: 9 additions & 0 deletions android/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,15 @@ Add What ever Want to share MIME Type so only include you want to share your App
<data android:mimeType="image/*" />
<data android:mimeType="application/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE"/>
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
<data android:mimeType="video/*" />
<data android:mimeType="audio/*" />
<data android:mimeType="application/*" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
```

Expand Down