Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

where is my application folder in android?

My application records some data from a sensor of my phone, and it store the data to a file in the application's directory.

I run my application under the debug mode. And I was trying to find the application's folder and open the file with the saved data. However, I was not able to even find the app's folder.In the log information, it said the app's location is

" '/data/app/myAppPackage.apk' (success) ---"

but I can not find it anywhere by browsing the phone's disk.

Any hints?

thx in advance

like image 724
Evan_HZY Avatar asked Apr 16 '12 02:04

Evan_HZY


1 Answers

From my understanding you will not be able to view this data on the mobile device. When you test the app in eclipse you will be able to see in the applications folder the new data sets, But on your phone, it is encapsulated by the APK.

Try saving the values to sd card?

like image 169
UPGRAYEDD Avatar answered Oct 27 '22 01:10

UPGRAYEDD