-
Notifications
You must be signed in to change notification settings - Fork 32
Description
Hi, I've been using the SecureStorage plugin on Android and UWP and it has been working fine. I just started testing IOS but the plugin/keychain only returns empty values. xcode 9, iphone 8 simulator. Custom Entitlements is not set. (Setting this causes a profiling error I cannot resolve at this time.)
I found this and wondered if it's related. https://forums.developer.apple.com/thread/87449. I am accessing the plugin for a portable library which seems different situation than their unit test issues.
Following is a clip of the code. SetValue does return false.
value = "test";
var r = CrossSecureStorage.Current.SetValue(key, value);
var v = CrossSecureStorage.Current.GetValue(key);
if ( v != value )
throw new Exception("R: " + r + ", Value: " + (v ?? "(null)") + ", orig: " + (value ?? "(null)"));
Output: R: False, Value: (null), orig: test
Hopefully, it's a mistake I am making; if so, I apologize for taking your time.
Thanks