THE LOCATION POINTING TO WHERE DATA CAN BE STORED AND RETRIEVE IS CALL
Answers
Answered by
1
ANSWER:
Android uses a file system that's similar to disk-based file systems on other platforms. The system provides several options for you to save your app data:
App-specific storage: Store files that are meant for your app's use only, either in dedicated directories within an internal storage volume or different dedicated directories within external storage. Use the directories within internal storage to save sensitive information that other apps shouldn't access.
Shared storage: Store files that your app intends to share with other apps, including media, documents, and other files.
Preferences: Store private, primitive data in key-value pairs.
Databases: Store structured data in a private database using the Room persistence library.
Similar questions