Kudo / react-native-v8

Opt-in V8 runtime for React Native Android
MIT License
924 stars 69 forks source link

TypeError: action.apply is not a function #93

Open NetPumi2 opened 2 years ago

NetPumi2 commented 2 years ago

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?