react-native-quick-crypto 0.7.15 → 0.7.17
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/android/build.gradle +3 -2
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -112,7 +112,8 @@ android {
|
|
|
112
112
|
externalNativeBuild {
|
|
113
113
|
cmake {
|
|
114
114
|
cppFlags "-O2 -frtti -fexceptions -Wall -Wno-unused-variable -fstack-protector-all -DANDROID"
|
|
115
|
-
arguments "-DANDROID_STL=c++_shared"
|
|
115
|
+
arguments "-DANDROID_STL=c++_shared",
|
|
116
|
+
"-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
|
|
116
117
|
abiFilters (*reactNativeArchitectures())
|
|
117
118
|
}
|
|
118
119
|
}
|
|
@@ -175,7 +176,7 @@ dependencies {
|
|
|
175
176
|
implementation "com.facebook.react:react-android:+"
|
|
176
177
|
|
|
177
178
|
// Add a dependency on OpenSSL
|
|
178
|
-
implementation 'io.github.ronickg:openssl:3.3.2'
|
|
179
|
+
implementation 'io.github.ronickg:openssl:3.3.2-1'
|
|
179
180
|
}
|
|
180
181
|
|
|
181
182
|
// Resolves "LOCAL_SRC_FILES points to a missing file, Check that libfb.so exists or that its path is correct".
|
package/package.json
CHANGED