You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
I am using mmkv for redux persist. I am initalizing it like this:
const storage = new MMKVLoader().withEncryption().initialize();
...and this causes app crash. I see this in logcat:
java_vm_ext.cc:598] JNI DETECTED ERROR IN APPLICATION: GetStringUTFChars received NULL jstring
java_vm_ext.cc:598] in call to GetStringUTFChars
java_vm_ext.cc:598] from void com.facebook.jni.NativeRunnable.run()
runtime.cc:708] Runtime aborting...
if I remove encryption: const storage = new MMKVLoader().initialize();
... then app is working normally
Platform Information:
OS: Android
React Native Version 0.74.5
Library Version 10.0.3
The text was updated successfully, but these errors were encountered:
Describe the bug
I am using mmkv for redux persist. I am initalizing it like this:
const storage = new MMKVLoader().withEncryption().initialize();
...and this causes app crash. I see this in logcat:
if I remove encryption:
const storage = new MMKVLoader().initialize();
... then app is working normally
Platform Information:
The text was updated successfully, but these errors were encountered: