I don't want all my storage as adopted storage, so I was wondering how I can split it into 1 part adopted storage and 1 part normal file storage (what Android calls "portable storage").
I don't want all my storage as adopted storage, so I was wondering how I can split it into 1 part adopted storage and 1 part normal file storage (what Android calls "portable storage").
You don't need to root your device but the device i done this with is rooted
adb
executable (see our adb tag-wiki for details).adb devices
command. If your device is connected correctly you will see your device listed in the output.adb shell sm list-disks adoptable
. This will show you the list of disks that can be used for what we want.disk:179,128
so i ran adb shell sm partition disk:179,128 mixed 80
on my 32 GB AS card. It gave me 5 GB as adoptable storage and the rest for other uses. (This will format your SD card.)Q & A