Introduction

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 Android, you can store data in different ways. You can store data internally, externally, or in shared storage. Internal storage is private to your app and isn’t accessible to other apps. External storage is shared among all apps and can be accessed by the user. Shared storage is common storage that’s shared among all apps and the user. In this lesson, you’ll learn about the different types of storage in Android and how to use them.

You’ll go a step further to understand the concept of permissions and shared storage. Permissions are used to protect sensitive data and resources.

Your key objectives for this lesson are:

  • Identify the difference between internal and external storage.
  • Explain the concept of permissions and scoped storage.
  • Describe the purpose of shared storage.
See forum comments
Download course materials from Github
Previous: Quiz: Save Simple Data Next: Instruction