Hallo,
I just implement v8 into our project and all works fine except storage library we are using react-native-mmkv-storage
Our project shows us this issue: [TypeError: action.apply is not a function] in all functions like this
... export const setItem = async (key: string, value: string): Promise<void> => { try { await MMKVwithEncryption.setStringAsync(key, value); } catch (error) { console.log("Error: ", error) } }; ...
Is there any workaround or way how we can get rid of this issue?
Hallo, I just implement v8 into our project and all works fine except storage library we are using react-native-mmkv-storage
Our project shows us this issue:
[TypeError: action.apply is not a function]
in all functions like this... export const setItem = async (key: string, value: string): Promise<void> => { try { await MMKVwithEncryption.setStringAsync(key, value); } catch (error) { console.log("Error: ", error) } }; ...
Is there any workaround or way how we can get rid of this issue?