I think the option of serving media files from a web server could solve your problem, instead of bundling all media files with the app. If you take this approach, you could either stream the media by device, or allow users to download and save the media on sd card. Also, if they accidentally delete the file, they can always go back and download it again.
On Sep 6, 1:45 pm, Droid <[email protected]> wrote: > Yes, 160 MB cannot easily be bundled into the App Market? > I am looking at the google app engine or a server to stream chunks of > data at > the App..... > > On Sep 6, 8:01 pm, Filip Havlicek <[email protected]> wrote: > > > > > Hi Sebastián, > > > 160MB is a lot of data, I think it is a must to save that much to SD card > > (I'm not sure how much is the common internal phone storage, but I wouldn't > > be surprised if it would be around 256MB in common cases). > > > Although I have to disappoint you, I think there is no way to prevent user > > from accessing the data on SD card (this link supports my > > thoughtshttp://developer.android.com/guide/topics/data/data-storage.html#file...). > > You cypher the data somehow to prevent other applications from reading > > it > > successfully, although you are going to have to check for the data > > availability everytime you want to access it and throw an error message when > > they are not found (they actually don't have to be deleted, mounting SD card > > as mass storage to computer is enough to make them "disappear" to you). > > > Best regards, > > Filip Havlicek > > > 2010/9/6 Frank Weiss <[email protected]> > > > > > I was thinking in using the sd card storage. > > > > That's a good idea. > > > > > But, I don't want the > > > > user to accidentally remove the media files. I want it to be private, > > > > not accesible to possible deletions. > > > > How might a user accidently remove them? Why is this a concern? > > > > -- > > > You received this message because you are subscribed to the Google > > > Groups "Android Developers" group. > > > To post to this group, send email to [email protected] > > > To unsubscribe from this group, send email to > > > [email protected]<android-developers%2Bunsubs > > > [email protected]> > > > For more options, visit this group at > > >http://groups.google.com/group/android-developers?hl=en -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

