I have a resources folder amounting 2-3 GBs
. I want to install the app with the obb
in SD card
directly as some users won't be having that much internal storage.
I am currently searching for the solution.
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
android:installLocation="preferExternal"
... >
I found out about this which installs the apk
on external storage, but not the resources.
I am expecting that by default there must be an option in which apk
is installed in the internal storage while the resources on the sd-card
.