Conclusion

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Heads up... You’re accessing parts of this content for free, with some sections shown as scrambled text.

Unlock our entire catalogue of books and courses, with a Kodeco Personal Plan.

Unlock now

  In this lesson, you learned:

  • Internal storage and external storage.
  • Permissions needed to access external storage.
  • What shared and scoped storage is.

Choosing the right storage option for your app is important. You should consider the type of data you want to store and who should have access to the data. App-specific storage is best for files meant for your app’s use only. Shared storage is best for data that should be accessible to other apps even when your app is uninstalled. Scoped storage is the modern way to store and access files in Android. By understanding the different storage options, you can make informed data storage decisions. Good data storage practices provide more safety and privacy to your users. When making a decision on storage options, consider the following:

  • The type of data you want to store.
  • Who should have access to the data.
  • The size of the data.
  • The reliability of accessing the data.
See forum comments
Download course materials from Github
Previous: Instruction Next: Quiz: Understand App Storage