react-native 0.76.2 → 0.76.3
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/Libraries/Core/ReactNativeVersion.js +1 -1
- package/React/Base/RCTVersion.m +1 -1
- package/ReactAndroid/cmake-utils/ReactNative-application.cmake +2 -3
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/hermes-engine/build.gradle.kts +4 -0
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +8 -8
- package/sdks/hermesc/osx-bin/hermes +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/sdks/hermesc/win64-bin/msvcp140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140.dll +0 -0
- package/sdks/hermesc/win64-bin/vcruntime140_1.dll +0 -0
package/React/Base/RCTVersion.m
CHANGED
|
@@ -31,9 +31,8 @@ if(CCACHE_FOUND)
|
|
|
31
31
|
endif(CCACHE_FOUND)
|
|
32
32
|
|
|
33
33
|
set(BUILD_DIR ${PROJECT_BUILD_DIR})
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
endif()
|
|
34
|
+
file(TO_CMAKE_PATH "${BUILD_DIR}" BUILD_DIR)
|
|
35
|
+
file(TO_CMAKE_PATH "${REACT_ANDROID_DIR}" REACT_ANDROID_DIR)
|
|
37
36
|
|
|
38
37
|
file(GLOB input_SRC CONFIGURE_DEPENDS
|
|
39
38
|
${REACT_ANDROID_DIR}/cmake-utils/default-app-setup/*.cpp
|
|
@@ -36,9 +36,13 @@ fun getSDKPath(): String {
|
|
|
36
36
|
fun getSDKManagerPath(): String {
|
|
37
37
|
val metaSdkManagerPath = File("${getSDKPath()}/cmdline-tools/latest/bin/sdkmanager")
|
|
38
38
|
val ossSdkManagerPath = File("${getSDKPath()}/tools/bin/sdkmanager")
|
|
39
|
+
val windowsMetaSdkManagerPath = File("${getSDKPath()}/cmdline-tools/latest/bin/sdkmanager.bat")
|
|
40
|
+
val windowsOssSdkManagerPath = File("${getSDKPath()}/tools/bin/sdkmanager.bat")
|
|
39
41
|
return when {
|
|
40
42
|
metaSdkManagerPath.exists() -> metaSdkManagerPath.absolutePath
|
|
43
|
+
windowsMetaSdkManagerPath.exists() -> windowsMetaSdkManagerPath.absolutePath
|
|
41
44
|
ossSdkManagerPath.exists() -> ossSdkManagerPath.absolutePath
|
|
45
|
+
windowsOssSdkManagerPath.exists() -> windowsOssSdkManagerPath.absolutePath
|
|
42
46
|
else -> throw GradleException("Could not find sdkmanager executable.")
|
|
43
47
|
}
|
|
44
48
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native",
|
|
3
|
-
"version": "0.76.
|
|
3
|
+
"version": "0.76.3",
|
|
4
4
|
"description": "A framework for building native apps using React",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -109,13 +109,13 @@
|
|
|
109
109
|
},
|
|
110
110
|
"dependencies": {
|
|
111
111
|
"@jest/create-cache-key-function": "^29.6.3",
|
|
112
|
-
"@react-native/assets-registry": "0.76.
|
|
113
|
-
"@react-native/codegen": "0.76.
|
|
114
|
-
"@react-native/community-cli-plugin": "0.76.
|
|
115
|
-
"@react-native/gradle-plugin": "0.76.
|
|
116
|
-
"@react-native/js-polyfills": "0.76.
|
|
117
|
-
"@react-native/normalize-colors": "0.76.
|
|
118
|
-
"@react-native/virtualized-lists": "0.76.
|
|
112
|
+
"@react-native/assets-registry": "0.76.3",
|
|
113
|
+
"@react-native/codegen": "0.76.3",
|
|
114
|
+
"@react-native/community-cli-plugin": "0.76.3",
|
|
115
|
+
"@react-native/gradle-plugin": "0.76.3",
|
|
116
|
+
"@react-native/js-polyfills": "0.76.3",
|
|
117
|
+
"@react-native/normalize-colors": "0.76.3",
|
|
118
|
+
"@react-native/virtualized-lists": "0.76.3",
|
|
119
119
|
"abort-controller": "^3.0.0",
|
|
120
120
|
"anser": "^1.4.9",
|
|
121
121
|
"ansi-regex": "^5.0.0",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|