dinesh707
dinesh707

Reputation: 12582

Where does my app data save on Android?

I'm running my android application through Eclipse on Toshiba tablet ( Which runs Android Gingerbread ). I'm saving some files though the application. Where can i find these files by browsing through the tablet. Because the file explorer on Eclipse do not show any files on tablet.

Upvotes: 5

Views: 62777

Answers (1)

Neeraj Nama
Neeraj Nama

Reputation: 1572

The data can be deleted from the Settings -> Application -> Manage Applications -> Your Application -> Clear Data.

But to Save files/data you need 'adb push /data/data/complete_package_path/file_name destination' For SD Card the destination is /mnt/sdcard/file_name.

Upvotes: 3

Related Questions