3

I have created a hidden directory for my app and wish to view it on Android Studio's Android Device Monitor, however, ADM does not show the directory. How can I change ADM's preferences to view that folder?

Farzan Badakhshan
  • 373
  • 1
  • 5
  • 19

2 Answers2

5

After read as source code, I find that as commit command "ls -l" to device, so if we want to view the hidden files, you can repo the as source code alter the command to "ls -al", then build the as.

hakka
  • 86
  • 1
  • 2
4

This still seems not to be possible in Android studio without a hack. An alternate method is using adb:

adb shell
cd your/desired/directory
ls -a

etc.
Georgie
  • 2,448
  • 2
  • 17
  • 13