From 2529265eedff14b2ac0646ec83d83fb52a8a34c7 Mon Sep 17 00:00:00 2001 From: Miku AuahDark Date: Sat, 20 Jul 2019 19:58:51 +0800 Subject: [PATCH] Modify AndroidManifest.xml again. The first change is to change the launch mode from singleTop to singleTask. This hopefully fixes issue with love.filesystem initialization issue. The second change is to change the accepted mime type to application/octet-stream. --- app/src/main/AndroidManifest.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 8b99fe87..e82d3dfb 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -19,8 +19,9 @@ android:name="org.love2d.android.GameActivity" android:configChanges="orientation|screenSize|keyboard|keyboardHidden|navigation" android:label="LÖVE for Android" - android:launchMode="singleTop" - android:screenOrientation="landscape" > + android:launchMode="singleTask" + android:screenOrientation="landscape" + android:resizeableActivity="false" > @@ -49,7 +50,7 @@ - +