Skip to content
Open
Changes from all commits
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
8 changes: 2 additions & 6 deletions android/app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,7 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="content" />
<data android:mimeType="*/*" />
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't know about pbz, but pbw is a zip archive, so you can use that mime type for it

<data android:pathPattern=".*\\.pbw" />
<data android:scheme="content" android:pathSuffix=".pbw" />
</intent-filter>
</activity>

Expand Down Expand Up @@ -168,9 +166,7 @@
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />

<data android:scheme="content" />
<data android:mimeType="*/*" />
<data android:pathPattern=".*\\.pbz" />
<data android:scheme="content" android:pathSuffix=".pbz" />
</intent-filter>
</activity>
<!-- Don't delete the meta-data below.
Expand Down
Loading