From 415f84e13f11ac77d50a7f05fa10198d78be4b7c Mon Sep 17 00:00:00 2001 From: radius Date: Fri, 25 Nov 2016 13:46:48 -0500 Subject: [PATCH] having it as preferExternal accomplishes literally nothing! Basically it saves the apk file (that is used ONCE) in the external SD but all the data files are created in the same location in the internal partition Having it as preferExternal causes installation issues on some devices (have to remove the SD card to install the app..., then insert again) --- pkg/android/phoenix/AndroidManifest.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/android/phoenix/AndroidManifest.xml b/pkg/android/phoenix/AndroidManifest.xml index da36cb326a..36edccbb32 100644 --- a/pkg/android/phoenix/AndroidManifest.xml +++ b/pkg/android/phoenix/AndroidManifest.xml @@ -2,7 +2,7 @@ package="com.retroarch" android:versionCode="48" android:versionName="1.3.6" - android:installLocation="preferExternal"> + android:installLocation="internalOnly">