Skip to content

Commit

Permalink
Tweak Android intent filter
Browse files Browse the repository at this point in the history
  • Loading branch information
torokati44 committed Feb 10, 2025
1 parent 4bfb9a5 commit 85fddd1
Showing 1 changed file with 3 additions and 16 deletions.
19 changes: 3 additions & 16 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,27 +42,14 @@
android:name="android.support.PARENT_ACTIVITY"
android:value=".MainActivity" />

<intent-filter>
<action android:name="android.intent.action.VIEW"/>

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

<data android:scheme="file"/>
<data android:scheme="content"/>

<data android:mimeType="application/x-shockwave-flash"/>
</intent-filter>

<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="http" />
<data android:scheme="https" />
<data android:scheme="file" />
<data android:host="*" />
<data android:pathPattern=".*\\.swf" />
<data android:mimeType="*/*" />
<data android:pathPattern="*.*\\.swf" />
</intent-filter>

</activity>
Expand Down

0 comments on commit 85fddd1

Please sign in to comment.