File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 2
2
3
3
# Standard
4
4
BasedOnStyle : llvm
5
- Standard : c++14
5
+ Standard : c++20
6
6
7
7
# Indentation
8
8
IndentWidth : 2
Original file line number Diff line number Diff line change 37
37
"react-native-bouncy-checkbox" : " 4.1.2" ,
38
38
"react-native-nitro-modules" : " 0.25.2" ,
39
39
"react-native-quick-base64" : " 2.2.0" ,
40
- "react-native-quick-crypto" : " 1.0.0-beta.20 " ,
40
+ "react-native-quick-crypto" : " workspace:* " ,
41
41
"react-native-safe-area-context" : " 5.1.0" ,
42
42
"react-native-screens" : " 3.35.0" ,
43
43
"react-native-vector-icons" : " ^10.1.0" ,
Original file line number Diff line number Diff line change @@ -8,6 +8,9 @@ SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
8
8
# Set BUILD_DIR to the packages/react-native-quick-crypto/build directory
9
9
BUILD_DIR=" $SCRIPT_DIR /../packages/react-native-quick-crypto/build"
10
10
11
+ # Create build directory if it doesn't exist
12
+ mkdir -p " $BUILD_DIR "
13
+
11
14
# Convert to absolute path
12
15
BUILD_DIR=" $( cd " $BUILD_DIR " && pwd) "
13
16
@@ -40,7 +43,7 @@ include_directories(
40
43
"cpp/random"
41
44
"cpp/utils"
42
45
"deps/fastpbkdf2"
43
- "deps/ncrypto"
46
+ "deps/ncrypto/include "
44
47
"build/includes"
45
48
"nitrogen/generated/shared/c++"
46
49
"../../node_modules/react-native/ReactCommon/jsi"
@@ -62,6 +65,7 @@ add_library(QuickCrypto STATIC
62
65
cpp/pbkdf2/HybridPbkdf2.cpp
63
66
cpp/random/HybridRandom.cpp
64
67
deps/fastpbkdf2/fastpbkdf2.c
68
+ deps/ncrypto/src/ncrypto.cpp
65
69
)
66
70
EOF
67
71
You can’t perform that action at this time.
0 commit comments