Skip to content

Commit

Permalink
accept multiple files
Browse files Browse the repository at this point in the history
  • Loading branch information
9001 committed Jan 23, 2022
1 parent 1864307 commit b7a2870
Show file tree
Hide file tree
Showing 3 changed files with 209 additions and 171 deletions.
11 changes: 5 additions & 6 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
android:exported="true" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />

<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
Expand All @@ -28,16 +27,17 @@
android:theme="@style/Theme.PartyUP.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.SEND" />

<category android:name="android.intent.category.DEFAULT" />

<data android:mimeType="text/plain" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND" />

<category android:name="android.intent.category.DEFAULT" />

<data android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="*/*" />
</intent-filter>
</activity>
Expand All @@ -47,7 +47,6 @@
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.APPLICATION_PREFERENCES" />

<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
Expand Down
Loading

0 comments on commit b7a2870

Please sign in to comment.