react-native-screens 4.7.0 → 4.8.0
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
CHANGED
|
@@ -130,7 +130,8 @@ android {
|
|
|
130
130
|
externalNativeBuild {
|
|
131
131
|
cmake {
|
|
132
132
|
arguments "-DANDROID_STL=c++_shared",
|
|
133
|
-
"-DRNS_NEW_ARCH_ENABLED=${IS_NEW_ARCHITECTURE_ENABLED}"
|
|
133
|
+
"-DRNS_NEW_ARCH_ENABLED=${IS_NEW_ARCHITECTURE_ENABLED}",
|
|
134
|
+
"-DANDROID_SUPPORT_FLEXIBLE_PAGE_SIZES=ON"
|
|
134
135
|
}
|
|
135
136
|
}
|
|
136
137
|
}
|
|
@@ -17,6 +17,7 @@ add_compile_options(
|
|
|
17
17
|
-Wall
|
|
18
18
|
-Wpedantic
|
|
19
19
|
-Wno-gnu-zero-variadic-macro-arguments
|
|
20
|
+
-Wno-dollar-in-identifier-extension
|
|
20
21
|
)
|
|
21
22
|
|
|
22
23
|
file(GLOB LIB_CUSTOM_SRCS CONFIGURE_DEPENDS *.cpp ${LIB_COMMON_COMPONENTS_DIR}/*.cpp ${LIB_COMMON_COMPONENTS_DIR}/utils/*.cpp)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-screens",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.8.0",
|
|
4
4
|
"description": "Native navigation primitives for your React Native app.",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"submodules": "git submodule update --init --recursive && (cd react-navigation && yarn && yarn build && cd ../)",
|