π¦App Storage
If your app deals with large files or unstructured data, such as images, audio, or video, consider enabling App Storage integration.
Last updated
If your app deals with large files or unstructured data, such as images, audio, or video, consider enabling App Storage integration.
Last updated
const storage = new NativelyStorage()
const get_storage_value_callback = function (resp) {
console.log(resp.key);
console.log(resp.value);
};
storage.setStorageValue(key, value);
storage.getStorageValue(key, get_storage_value_callback);
storage.removeStorageValue(key);
storage.resetStorage();