For my app, I have a fairly large database that needs to be stored on the user\'s device. I plan to change this in the future. For now, however, I\'d like to store it to the
I use
File rootPath = Environment.getExternalStorageDirectory(); String StorageDir = new File(rootPath.getPath()+"/"+DirectoryName);
where DirectoryName is the name of the subdirectory in the ExternalStorage to use. No one has reported any issues to me.