Skip to content

Commit 03cad44

Browse files
authored
[Android] Associate .tic files to TIC-80 app (#2834)
* [Android] Associate .tic files to TIC-80 app Proposed by @Popolon at #2811 * [Android] Associate .tic and .png to TIC-80 app
1 parent 70b0ba3 commit 03cad44

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

build/android/app/src/main/AndroidManifest.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,13 +89,13 @@
8989
</intent-filter>
9090

9191
<!-- Drop file event -->
92-
<!--
9392
<intent-filter>
9493
<action android:name="android.intent.action.VIEW" />
9594
<category android:name="android.intent.category.DEFAULT" />
96-
<data android:mimeType="*/*" />
95+
<data android:mimeType="*/*" android:pathPattern=".*\\.tic" />
96+
<data android:mimeType="*/*" android:pathPattern=".*\\.png" />
9797
</intent-filter>
98-
-->
98+
9999
</activity>
100100
<activity android:name=".TICFileReceiver"
101101
android:theme="@android:style/Theme.Translucent"

0 commit comments

Comments
 (0)