react-native-mmkv 1.6.1 → 1.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -17,10 +17,6 @@ if(${REACT_NATIVE_VERSION} LESS 66)
17
17
  INCLUDE_JSI_CPP
18
18
  "${NODE_MODULES_DIR}/react-native/ReactCommon/jsi/jsi/jsi.cpp"
19
19
  )
20
- set (
21
- INCLUDE_JSIDYNAMIC_CPP
22
- "${NODE_MODULES_DIR}/react-native/ReactCommon/jsi/jsi/JSIDynamic.cpp"
23
- )
24
20
  endif()
25
21
 
26
22
  add_library(reactnativemmkv # <-- Library name
@@ -28,7 +24,6 @@ add_library(reactnativemmkv # <-- Library name
28
24
  src/main/cpp/cpp-adapter.cpp
29
25
  src/main/cpp/MmkvHostObject.cpp
30
26
  ${INCLUDE_JSI_CPP} # only on older RN versions
31
- ${INCLUDE_JSIDYNAMIC_CPP} # only on older RN versions
32
27
  )
33
28
 
34
29
  set_target_properties(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-mmkv",
3
- "version": "1.6.1",
3
+ "version": "1.6.2",
4
4
  "description": "The fastest key/value storage for React Native. ~30x faster than AsyncStorage! Works on Android, iOS and Web.",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",