Skip to content

Commit

Permalink
Fix intent filters for InstallZip to also allow directly .abdb and .abmd
Browse files Browse the repository at this point in the history
  • Loading branch information
tuomas2 committed Jun 13, 2024
1 parent 90c57ad commit dd00076
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion app/src/standard/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,17 @@
<data android:mimeType="application/zip" />
<data android:mimeType="application/epub+zip" />
</intent-filter>
<intent-filter tools:ignore="AppLinkUrlError">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" />
<data android:scheme="content" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.ab(db|md)" />
</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="application/x-zip" />
<data android:mimeType="application/zip" />
Expand Down

0 comments on commit dd00076

Please sign in to comment.