Results 19 comments of Malcolm

It's my understanding that setting `kSecAttrSynchronizable = true` would solve this issue only when a) user hasn't opted out of iCloud keychain backup and b) the restore is to the...

@abejfehr @jarnove Did either of you try making code changes to remove MMKV files from backup with [`isExcludedFromBackup`](https://developer.apple.com/documentation/foundation/urlresourcevalues/1780002-isexcludedfrombackup)?

I took a stab at implementing it by excluding the entire mmkv directory,`/Library/mmkv`, in this commit: https://github.com/Mookiies/react-native-mmkv-storage/commit/165cd18ad235dd27c9356a2dc8a27dcba5559ba0 It's a naive implementation, but I think it would be enough to verify...

If it does the trick I imagine at the minimum in order to get a mergable PR ready it would need to be made configurable, as excluding shouldn't be the...

@GleidsonDaniel Have you been able to verify that solution 1, setting `AccessibleAfterFirstUnlockThisDeviceOnly`, solves this problem for a different device iCloud restore? It's my understanding that this wouldn't solve the issue...

> The contents of the Library directory (with the exception of the Caches subdirectory) are backed up by iTunes and iCloud https://developer.apple.com/library/archive/documentation/FileManagement/Conceptual/FileSystemProgrammingGuide/FileSystemOverview/FileSystemOverview.html > When iCloud Backup is in an enabled...

Running into this properties limit is something that is happening to us in production. If this a change y'all would be interested interested I'd be happy to own the implementation...

Firstly, thank you for the detailed response and all the work on this library :heart: I did get Graphcahce working with `Map`s, https://github.com/Mookiies/urql/commit/fcb9d11246e26177b5e025cf467f6c5193c9ecda. However, I agree that simply switching to...

Have other people's workarounds had success in getting x and y values to be anything other than `0`?