1

I am using genymotion emulator as I am fedup with useless android emulator.

Genymotion is fine but when I create a database it is not visible in DDMS folder, now I am confused whether it is created or not.

Can anyone give idea on how to overcome this issue.

Thanks in advance Siva

Siva
  • 9,043
  • 12
  • 40
  • 63
  • Check also this answer: http://stackoverflow.com/questions/4867379/android-eclipse-ddms-cant-access-data-data-on-phone-to-pull-files/8896049#8896049 – Guillermo Gutiérrez Oct 09 '14 at 21:07

1 Answers1

0

The directory explorer is currently not working with Genymotion VMs. You can find it via adb shell

You can access the database directory of your app in command line :

 $ su
 # cd /data/data/[your.package.name]/databases
eyal-lezmy
  • 7,090
  • 3
  • 41
  • 35
  • Thanks eyal for your reply... please tell me where I need to fire those commands in geny motion shell of adb shell. – Siva Dec 02 '13 at 10:17
  • There is nothing special to Genymotion actually. adb shell is the command you use to open a shell on your Android device. When you see your device on DDMS, you can run adb shell. – eyal-lezmy Dec 02 '13 at 15:24