Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Android Studio 3 (All Versions) - Device file explorer nothing to show

Tags:

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 searched this topic a lot but couldn't find anything that is relevant to this issue.

I'm using my test device:

Android Galaxy S5 running Android OS 6 (API 23) - Rooted

The specific build of Android Studio I'm using is:

Android Studio 3.0 Beta 6
Build #AI-171.4333198, built on September 13, 2017
JRE: 1.8.0_152-release-915-b01 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Windows 10 10.0

Any idea's how to solve this issue?

like image 333
Roy Hen Engel Avatar asked Sep 28 '17 05:09

Roy Hen Engel


People also ask

Where is device file explorer Android Studio?

To open the Device File Explorer window, in Android Studio, select: View / Tool Windows / Device File Explorer.

Where is device file explorer in Android Studio arctic fox?

Click View > Tool Windows > Device File Explorer or click the Device File Explorer button in the tool window bar to open the Device File Explorer.

How do I view file explorer on Android?

On your Android 10 device, open the app drawer and tap the icon for Files. By default, the app displays your most recent files. Swipe down the screen to view all your recent files (Figure A). To see only specific types of files, tap one of the categories at the top, such as Images, Videos, Audio, or Documents.


2 Answers

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.

  1. First disconnect your Android device from the computer running Android Studio
  2. On your Android device open SuperSU and select the apps tab.
  3. Click on ADB shell and select Access:'deny'
  4. Reconnect your device to your dev computer using a USB cable
  5. In Android Studio open the "Device File Explorer".

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

like image 86
AndrewD Avatar answered Sep 21 '22 07:09

AndrewD


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

like image 35
Kenny Avatar answered Sep 18 '22 07:09

Kenny