Re: [android-developers] Re: Internal storage on emulator

2010-11-07 Thread paulb
Hello Mike, The Vibrant is similar to a Galaxy S, right? On the Galaxy S, you have 2GB of internal storage, and an 8 or 16GB internal SD card which seems to actually be external storage. The 8/16GB internal SD card can be accessed with the directory /sdcard. I think you are meant to store your

[android-developers] Re: Internal storage on emulator

2010-11-06 Thread Mike
Right, that increases the size but it doesn't tell me where and how I should set up the file system so that I can place music on it. I need it to work just like a Samsung Vibrant for instance which has 8GB of internal storage that's available for media storage. I need to place a bunch of music

[android-developers] Re: Internal Storage

2010-08-05 Thread Dosa
Thanks for your help! Assets sound good too. Files under assets are included in the apk file created right? Btw, can we write back into the files under assets, or create new files there? On Aug 5, 4:41 am, Mathias Lin m...@mathiaslin.com wrote: The assets folder would probably be suitable for

[android-developers] Re: Internal Storage

2010-08-05 Thread Dosa
Thanks for your help! So I guess the files I created through my app onto the emulator won't be included with the apk too. On Aug 5, 8:10 am, TreKing treking...@gmail.com wrote: On Tue, Aug 3, 2010 at 10:44 PM, Dosa dosa1...@gmail.com wrote: Now I would like to install my app on a real device,

[android-developers] Re: Internal Storage

2010-08-05 Thread Dosa
Thanks for your help! So I guess the files I created through my app onto the emulator won't be included with the apk too. On Aug 5, 8:10 am, TreKing treking...@gmail.com wrote: On Tue, Aug 3, 2010 at 10:44 PM, Dosa dosa1...@gmail.com wrote: Now I would like to install my app on a real device,

[android-developers] Re: Internal Storage

2010-08-05 Thread Dosa
Thanks for your help! So I guess the files I created through my app onto the emulator won't be included with the apk too. On Aug 5, 8:10 am, TreKing treking...@gmail.com wrote: On Tue, Aug 3, 2010 at 10:44 PM, Dosa dosa1...@gmail.com wrote: Now I would like to install my app on a real device,

[android-developers] Re: Internal Storage

2010-08-05 Thread Sarwar Erfan
On Aug 5, 4:26 pm, Dosa dosa1...@gmail.com wrote: Thanks for your help! Assets sound good too. Files under assets are included in the apk file created right? Yes. Btw, can we write back into the files under assets, or create new files there? No. You need to copy files from your assets

[android-developers] Re: Internal Storage

2010-08-04 Thread Mathias Lin
The assets folder would probably be suitable for your case, see http://thedevelopersinfo.com/2009/11/17/using-assets-in-android/ On Aug 4, 11:44 am, Dosa dosa1...@gmail.com wrote: I am writing a app that reads a file from the internal storage on startup. I have followed the guildelines