I found this message about App Install location: "The .apk file is saved on the external storage, but all private user data, databases, optimized .dex files, and extracted native code are saved on the internal device memory"
Based on this, I believe it is a bad idea to place anything large (meaning more than a few megabytes), as a private storage file. ie, if I call openFileOutput(FILENAME, Context.MODE_PRIVATE); It should be only for little files. If a user moves their app to the SD Card, it doesn't really give them any more room for these files. For anything else, I should plan on it being on the storage card, and open to the public. Am I right? Nathan -- 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

