I’m currently preparing a puzzle App. however I’m in a dilemma if I should choose internal or external storage ( or any other by suggestions ).
the App will contain like 30 images for the puzzle ( and an option to choose own gallery images ). I’m not a very experienced coder so the combination between best and easiest option would be great.
- For Internal storage: The settings of the App and such are more secure ,but I’m scared to hit the data limit.
- For External storage: “There is no effect on the application performance so long as the external storage is mounted on the device.” (developer.android) Especially the last part about mounting scares me.
thanks in advance,
~Olijf
Why not set this in your Manifest:
If you declare “auto”, you indicate that your application may be installed on the external storage, but you don’t have a preference of install location. The system will decide where to install your application based on several factors. The user can also move your application between the two locations.
Edit:
Checking, if external or internal storage is available: