APP database limit under the topic storage API

As we are developing an front-end APP, we are in need of knowing the database limit to store the item details. Could you please confirm the below points?

  1. App Database limit to store the data
  2. Is it possible to store the objects or array of values for a key?
    Example:
 monday.storage.instance.setItem('domain', {name: "xxx",api_key:"yyy"}).then(res => {
            console.log("setItem.......",res);
          });

Hello there,

I will ask the team responsible for the storage API about this and let you know soon :slightly_smiling_face:

Hello there @Priya,

The limit for our storage API is 6MB currently.

The key must be a string.

I hope this helps!

Cheers,
Matias

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.

Thanks,