react-native-fs-turbo 0.3.6 → 0.3.7

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.
package/README.md CHANGED
@@ -60,6 +60,15 @@ yarn add react-native-fs-turbo
60
60
  cd ios && pod install
61
61
  ```
62
62
 
63
+ ### Android
64
+
65
+ #### Proguard
66
+ If you're using Proguard, make sure to add the following rule at proguard-rules.pro:
67
+
68
+ ```
69
+ -keep class com.cmpayc.rnfsturbo.** { *; }
70
+ ```
71
+
63
72
  ## Usage
64
73
 
65
74
  ### Import
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.9.0)
2
2
  project(RNFSTurbo)
3
3
 
4
4
  set(CMAKE_VERBOSE_MAKEFILE ON)
5
- set(CMAKE_CXX_STANDARD 17)
5
+ set(CMAKE_CXX_STANDARD 20)
6
6
 
7
7
  # Compile sources
8
8
  add_library(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-fs-turbo",
3
- "version": "0.3.6",
3
+ "version": "0.3.7",
4
4
  "description": "React-Native library for working with Android/iOS file system, written using JSI and C++ TurboModules",
5
5
  "main": "lib/commonjs/index",
6
6
  "module": "lib/module/index",