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.
@@ -13,5 +13,5 @@ exports.version = {
13
13
  major: 0,
14
14
  minor: 71,
15
15
  patch: 8,
16
- prerelease: '0rc3',
16
+ prerelease: '0rc4',
17
17
  };
@@ -24,7 +24,7 @@ NSDictionary* RCTGetReactNativeVersion(void)
24
24
  RCTVersionMajor: @(0),
25
25
  RCTVersionMinor: @(71),
26
26
  RCTVersionPatch: @(8),
27
- RCTVersionPrerelease: @"0rc3",
27
+ RCTVersionPrerelease: @"0rc4",
28
28
  };
29
29
  });
30
30
  return __rnVersion;
@@ -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}")
@@ -1,4 +1,4 @@
1
- VERSION_NAME=0.71.8-0rc3
1
+ VERSION_NAME=0.71.8-0rc4
2
2
 
3
3
  # GROUP=com.facebook.react
4
4
  # Group for the TV repo
@@ -18,5 +18,5 @@ public class ReactNativeVersion {
18
18
  "major", 0,
19
19
  "minor", 71,
20
20
  "patch", 8,
21
- "prerelease", "0rc3");
21
+ "prerelease", "0rc4");
22
22
  }
@@ -18,7 +18,7 @@ constexpr struct {
18
18
  int32_t Major = 0;
19
19
  int32_t Minor = 71;
20
20
  int32_t Patch = 8;
21
- std::string_view Prerelease = "0rc3";
21
+ std::string_view Prerelease = "0rc4";
22
22
  } ReactNativeVersion;
23
23
 
24
24
  } // namespace facebook::react
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-native-tvos",
3
- "version": "0.71.8-0rc3",
3
+ "version": "0.71.8-0rc4",
4
4
  "bin": "./cli.js",
5
5
  "description": "A framework for building native apps using React",
6
6
  "license": "MIT",
@@ -77,7 +77,9 @@ function configure_apple_framework {
77
77
  enable_debugger="false"
78
78
  fi
79
79
  if [[ $BUILD_TYPE == "Debug" ]]; then
80
- cmake_build_type="Debug"
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
@@ -11,7 +11,7 @@
11
11
  },
12
12
  "dependencies": {
13
13
  "react": "18.2.0",
14
- "react-native": "npm:react-native-tvos@0.71.8-0rc3"
14
+ "react-native": "npm:react-native-tvos@0.71.8-0rc4"
15
15
  },
16
16
  "devDependencies": {
17
17
  "@babel/core": "^7.20.0",