I formatted my sd card as adopted internal storage as possible in Android 6.
However in the settings I can still move (some) apps to the "external storage". This is quite confusing as I thought they would be automatically placed on my sd card as this sd card is my "fake internal storage".
So I have three questions:
- Why can I still move them there?
- Where are they moved exactly to?
Currently I noticed that the app data was stored in/storage/emulated/0respectively/sdcard(which is a symbol link to/storage/emulated/0) - Does it make sense to move the apps like this?
/storage/emulated/0seems to confirm this: "emulated" is the internal card. So if that's the case here, it indeed makes sense, as that "internal card" usually is a bit faster :) – Izzy Mar 30 '16 at 14:38/sdcardto/storage/emulated/0and this is the polace where the app data seem to be saved by default.However I don't exactly know where the apps itself (the apks?) are saved. Which directories should I check?
– rugk Apr 01 '16 at 20:56/data/appson internal storage. App2SD would store them in a hidden folder on the SDCard (.android_secure). And as I already wrote: Yes, that's the emulated/internal SDCard your/sdcardsymlink points to – and I suspect that's the target here. So you could use your "root powers" to check for the folder there: make yourself root (runningsuin a terminal/shell) and then do ancd /sdcard && ls -a(the hidden folder will be shown to root only). – Izzy Apr 01 '16 at 21:35ls -athere only shows my usual "internal storage" content. There is no folder called.android_secure. However when booting into my recovery (TWRP) I noticed that inexternal_sdthere are some directories:app,local,media,miscanduser. Andappindeed contains my apllication I moved to the sdcard. – rugk Apr 02 '16 at 16:12/mnt/secure/asec, which should be the equivalent (asecis the abbreviated form ofandroid_secure)? – Izzy Apr 02 '16 at 16:32/mnt/secure/asecis empty. – rugk Apr 02 '16 at 18:21