-
Provide an additional storage API to store data in a trusted environment on the native client. On iOS this would be the iOS KeyChain. The API should be the same as [localStorage](https://developer.moz…
-
Snippet to reproduce:
``` js
secureStorage.setItem("foo", 23);
secureStorage.setItem("bar", 42);
secureStorage.removeItem("foo");
console.log(secureStorage.getItem("foo")); // > null
console.log(se…
-
System details:
- Samsung Galaxy S7
- Systemless root
- Systemless Xposed 86.2
Everything functions properly, but when trying to click on any item in the download view the app crashes. Tried clear ca…
-
Hi,
I tried to upload an ipa today, but just getting an "Error" alert box
-
Wrote an encryption wrapper class using Tray to replace the one i had been using for SharedPreferences. Maybe someone else will find it useful. Find it here https://github.com/draekko/securedtray
Th…
-
I'm using the [cordova-hot-code-push](https://github.com/nordnet/cordova-hot-code-push) plugin, which requires some extra properties in the config.xml of my app. When I build the app for Android using…
-
This is related to the storage location issue, but slightly different.
I've used this plugin for a Xamarin app, then used that app code to start a different app. I changed the iOS bundle identifier …
-
Using android: when I perform a ss.get (immediately after ss.set) I get the keystore without issue. If i then close the app and open it up, then try to perform that same ss.get (having not performed a…
-
I've found this behaviour in my main app and have also managed to reproduce it in a minimal cordova app. All of this is executed after the deviceReady event.
Now these calls are supposed to fail, be…
-
When an item isn't present in the iOS keychain, usually `get()` returns null, but sometimes it throws "errSecItemNotFound".