Reputation: 12582
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
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