Added support for Mac file association; minor optimizations

This commit is contained in:
Anuken
2018-06-01 13:01:05 -04:00
parent cfa95eef39
commit 5c120e532f
9 changed files with 80 additions and 2 deletions
+12
View File
@@ -33,6 +33,18 @@
<category android:name="android.intent.category.BROWSABLE"/>
<data android:mimeType="application/octet-stream"/>
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.mmap" android:mimeType="*/*" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:scheme="file" android:host="*" android:pathPattern=".*\\.msav" android:mimeType="*/*" />
</intent-filter>
</activity>
@@ -102,7 +102,7 @@ public class AndroidLauncher extends AndroidApplication{
@Override
public boolean isDebug() {
return true;
return false;
}
@Override