When opening the Device file explorer
window in Android Studio Preview 3, I don\'t see the device\'s files (There is a message \"Nothing to show\").
I searc
AS file explorer will execute su 0 sh -c 'ls -l /'
to list the files. For unknown reason, SuperSu
remove the single quotes and the actual command are su 0 sh -c ls -l /
. In such case, the -l will not work. AS file explorer may have some problem to parse the output. So there is nothing to show.
You can check the log of AS to get such behavior. Open the log from: help -> show log in explorer
After struggling with this for a day, the answer for me was associated with disabling SuperUser permissions for the ADB shell on my Android Device.
If you have rooted your device and are using an app like SuperSU, try disabling the SU permission for ADB shell in the apps view list.
You should now see a list of files on the device, including files in /data/data/ and its subfolders
You would think that having SU permissions would be a good thing: but in this case, no.
Disable ADB shell's SU permissions in SuperSU