react-native-tvos 0.71.8-0rc3 → 0.71.8-0rc4
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/build.gradle +4 -0
- package/ReactAndroid/gradle.properties +1 -1
- package/ReactAndroid/src/main/java/com/facebook/react/modules/systeminfo/ReactNativeVersion.java +1 -1
- package/ReactCommon/cxxreact/ReactNativeVersion.h +1 -1
- package/package.json +1 -1
- package/sdks/hermes-engine/utils/build-apple-framework.sh +3 -1
- package/sdks/hermesc/linux64-bin/hermesc +0 -0
- package/sdks/hermesc/osx-bin/hermesc +0 -0
- package/sdks/hermesc/win64-bin/hermesc.exe +0 -0
- package/sdks/hermesc/win64-bin/icudt64.dll +0 -0
- package/sdks/hermesc/win64-bin/icuin64.dll +0 -0
- package/sdks/hermesc/win64-bin/icuio64.dll +0 -0
- package/sdks/hermesc/win64-bin/icutest64.dll +0 -0
- package/sdks/hermesc/win64-bin/icutu64.dll +0 -0
- package/sdks/hermesc/win64-bin/icuuc64.dll +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/template/package.json +1 -1
package/React/Base/RCTVersion.m
CHANGED
|
@@ -539,6 +539,8 @@ android {
|
|
|
539
539
|
// that will include the necessary .so files to load.
|
|
540
540
|
exclude("**/libhermes.so")
|
|
541
541
|
exclude("**/libjsc.so")
|
|
542
|
+
exclude "**/libc++_shared.so"
|
|
543
|
+
exclude "**/libfbjni.so"
|
|
542
544
|
}
|
|
543
545
|
|
|
544
546
|
buildFeatures {
|
|
@@ -666,6 +668,8 @@ dependencies {
|
|
|
666
668
|
// Therefore hermes-engine is a compileOnly dependency.
|
|
667
669
|
compileOnly(project(":ReactAndroid:hermes-engine"))
|
|
668
670
|
|
|
671
|
+
implementation("com.facebook.fbjni:fbjni:0.3.0")
|
|
672
|
+
|
|
669
673
|
testImplementation("junit:junit:${JUNIT_VERSION}")
|
|
670
674
|
testImplementation("org.assertj:assertj-core:${ASSERTJ_VERSION}")
|
|
671
675
|
testImplementation("org.mockito:mockito-core:${MOCKITO_CORE_VERSION}")
|
package/package.json
CHANGED
|
@@ -77,7 +77,9 @@ function configure_apple_framework {
|
|
|
77
77
|
enable_debugger="false"
|
|
78
78
|
fi
|
|
79
79
|
if [[ $BUILD_TYPE == "Debug" ]]; then
|
|
80
|
-
|
|
80
|
+
# JS developers aren't VM developers.
|
|
81
|
+
# Therefore we're passing as build type Release, to provide a faster build.
|
|
82
|
+
cmake_build_type="Release"
|
|
81
83
|
else
|
|
82
84
|
cmake_build_type="MinSizeRel"
|
|
83
85
|
fi
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|