How can I fix this so that I can see a) my text file that is saved in data/data and b) a database that I have saved in that location?
Asked
Active
Viewed 44 times
0
-
Make sure you have selected the correct emulator. – Aniruddha May 22 '14 at 09:19
1 Answers
1
On rooted device you can do this:
- Open cmd
- Type '
adb shell
' su
chmod 777 /data /data/data /data/data/com.application.pacakage /data/data/com.application.pacakage/*
- Press 'Allow' on device
- Go to the DDMS view in Eclipse
After this you should be able to browse the files on the device.
If it returns permission denied
on su
Go to Settings
> Developer Options
> Root access
> Apps and ADB
Answer from here

Community
- 1
- 1

Suvitruf - Andrei Apanasik
- 5,582
- 9
- 49
- 88
-
Thank you, this is exactly the answer I was looking for and what I need to do. – Larry Stent May 22 '14 at 09:43