Re: [android-developers] Re: where is my data?

2010-12-21 Thread Sarwar Erfan
the internal 8GB flash memory is accessible when you connect the device to PC. If you have got what you need, then its already resolved :) Regards Sarwar Erfan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

Re: [android-developers] Re: where is my data?

2010-12-21 Thread Stephan Wiesner
ähm, actually, i do not have an (external) SD Card. The phone has 8 GB on its own, so no need for a card. Its actually very interesting to see how many apps don't work without a card .-) Writing to the internal card would be great, though. Did not think of that and I will try that right away. I jus

Re: [android-developers] Re: where is my data?

2010-12-21 Thread Sarwar Erfan
If you can read it from app, why dont you just copy it to sdcard by writing some lines of codes in your app? Then you can get it to your pc from sdcard. Regards Sarwar Erfan -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this

Re: [android-developers] Re: where is my data?

2010-12-21 Thread Stephan Wiesner
Yes, I can read my data. Frankly I just wanted to copy my database via eclipse ddms to my PC for analysis. Guess I will have to mail it or something .-) Thanks, Stephan 2010/12/21 YuviDroid : > Still, you can access that directory through your app. Try writing and > reading a file there and it sh

Re: [android-developers] Re: where is my data?

2010-12-21 Thread YuviDroid
Still, you can access that directory through your app. Try writing and reading a file there and it should work fine. On Tue, Dec 21, 2010 at 10:37 AM, Mark Murphy wrote: > On Tue, Dec 21, 2010 at 4:34 AM, Stephan Wiesner > wrote: > > thanks for the fast reply. > > only thing is: getFilesDir() re

Re: [android-developers] Re: where is my data?

2010-12-21 Thread Mark Murphy
On Tue, Dec 21, 2010 at 4:34 AM, Stephan Wiesner wrote: > thanks for the fast reply. > only thing is: getFilesDir() returns  /data/data/de.stephanwiesner > and, like i wrote, that dir does not exist (or is not accessible) It is not accessible from DDMS, nor from ASTRO. It is not supposed to b

[android-developers] Re: where is my data?

2010-12-21 Thread Stephan Wiesner
thanks for the fast reply. only thing is: getFilesDir() returns /data/data/de.stephanwiesner and, like i wrote, that dir does not exist (or is not accessible) Furthermore I read in Sams Teach Yourself Android that the data should be in /data/data/package name And, I am sure that it was there