Eclipse Android File Explorer not working

I searched around the Internet for an answer to this question without joy.

In my Eclipse (Helios) in DDMS mode, I cannot use the file explorer tab to search for files on my device. If I run the emulator, it works fine, but for my device it is empty. I use CM7 on HTC Desire

The one closest to the answer was here , but I'm not sure if this is really a solution. I'm a little wary.

+3
source share
2 answers

The problem is resolved.

I really looked at /system/bin on the device and noticed that there was no ls in the first place, so I put a symbolic link in the toolbox (for example, how to configure it in the emulator), and it works now.

More details:

  • Reboot the device in ClockworkMod recovery (via Rom Manager)
  • Mounting / system through ClockworkMod options.
  • In the terminal of your computer, connect to the device using adb shell
  • cd /system/bin
  • ln -s toolbox ls
  • reboot

And now I see the files

+9
source

Just close the emulator and run it again.

0
source

All Articles