Reputation: 14060
Is it possible to explore Android internal storage? I need this for debugging purposes to aid my development efforts.
Upvotes: 1
Views: 851
Reputation: 22371
You can on the emulator, or on an rooted device. just
adb shell
with the device connected, and navigate from there.
Upvotes: 1
Reputation: 29912
What do you mean by internal storage? If you mean e.g. where your app is installed and such .. yes you can on the emulator. On the device you can if you are root..
E.g. you app will be installed in /data/data/com.pacakgee/ and in there will be e.g. a database folder and other stuff depending on what your app does.
Upvotes: 0