-
Notifications
You must be signed in to change notification settings - Fork 108
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
NATIVE_WRITE_FAILED Error on Windows 10 #73
Comments
@davidofwatkins Thank you very much for bringing this into notice. I am going to re-write the windows implementation using |
@alokrajiv I don't know how to use github but I've got the code to replace the Windows.Security.Credentials.PasswordVault functionality with Windows.Storage.ApplicationData.current.localSettings:
|
Has this been looked into at all, or has @julesongithub's code been reviewed? We just got bit by the same NATIVE_WRITE_FAILED error on a Windows 10 Surface Pro. |
Unfortunately, something I missed along the way. Maybe someone can contribute here? |
Use ApplicationData Storage instead of PasswordVault on Windows. Based on TheCocoaProject#73 (comment)
On Windows 10 (Surface Pro), I'm getting a
NATIVE_WRITE_FAILED
error from the following code:In the "Output" tab of Visual Studio, I see the following when I run this:
I don't have much experience developing for Windows, but I see that NativeStorage is saving to
Windows.Security.Credentials.PasswordVault()
on Windows (see #38), which seems too limited to me. Is this expected? Perhaps the plugin should use something likeWindows.Storage.ApplicationData
?Does anyone have any further ideas how to fix this? (cc @3h3c)
The text was updated successfully, but these errors were encountered: