1

I am developing a hybrid application where I want to store images, documents and videos in the device. In my windows app I used to store data in the local storage (C:\Users\xyz\AppData\Local\Packages).

How do I proceed in the hybrid app. I will be deploying it in Windows, iOS and Android devices.

Anand G
  • 3,130
  • 1
  • 22
  • 28

2 Answers2

1

You can store it in

window.localStorage 

Here is more info:

https://developer.mozilla.org/pl/docs/Web/API/Window/localStorage

uksz
  • 18,239
  • 30
  • 94
  • 161
1

Have a look at angular-localforage. This article describes its usage.

It basically makes it easy to store key / value pairs in the local storage.

As this is a JS / Browser based solution it should work for the mentioned OS in your hybrid application.

Andre Kreienbring
  • 2,457
  • 11
  • 16