From 99433086bf41e7bbafce278be76de8a7dc3c4418 Mon Sep 17 00:00:00 2001 From: Diego Mello Date: Wed, 13 Mar 2024 18:24:21 -0300 Subject: [PATCH] Change mmkv storage to after first unlock --- app/lib/methods/userPreferences.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/lib/methods/userPreferences.ts b/app/lib/methods/userPreferences.ts index f61944bd7..ec2904409 100644 --- a/app/lib/methods/userPreferences.ts +++ b/app/lib/methods/userPreferences.ts @@ -3,7 +3,7 @@ import { create, MMKVLoader, MMKVInstance, ProcessingModes, IOSAccessibleStates const MMKV = new MMKVLoader() // MODES.MULTI_PROCESS = ACCESSIBLE BY APP GROUP (iOS) .setProcessingMode(ProcessingModes.MULTI_PROCESS) - .setAccessibleIOS(IOSAccessibleStates.AFTER_FIRST_UNLOCK_THIS_DEVICE_ONLY) + .setAccessibleIOS(IOSAccessibleStates.AFTER_FIRST_UNLOCK) .withEncryption() .initialize();