Skip to content Skip to sidebar Skip to footer

What Is The Maximum Stoarge Limit For Parse Local Data Store In Android

I am using local data store for my app with parse.com android. To improve the user experience and reduce the number of network calls, I want to store as much data related to user o

Solution 1:

Parse localDataStore simply create a sqlite db called "ParseOfflineStore" on devices. The limitation should be the same with normal sqlite db(http://www.sqlite.org/limits.html).

Logging out the user will not clear the data unless you unpin(remove) it.

Post a Comment for "What Is The Maximum Stoarge Limit For Parse Local Data Store In Android"