Skip to content

Commit 388038b

Browse files
committed
Update React Native and dependencies to 0.83.0
Upgraded React Native and related dependencies from 0.82.0 to 0.83.0 in the example iOS project. Enabled Gradle parallel build for Android. Updated shell script quoting in Xcode project and added inherited C flags. Updated package versions in package.json files.
1 parent fe9fe58 commit 388038b

6 files changed

Lines changed: 716 additions & 555 deletions

File tree

example/android/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ org.gradle.jvmargs=-Xmx2048m -XX:MaxMetaspaceSize=512m
1515
# When configured, Gradle will run in incubating parallel mode.
1616
# This option should only be used with decoupled projects. More details, visit
1717
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects
18-
# org.gradle.parallel=true
18+
org.gradle.parallel=true
1919

2020
# AndroidX package structure to make it clearer which packages are bundled with the
2121
# Android operating system, and which are packaged with your app's APK

example/ios/InAppBrowserNitroExample.xcodeproj/project.pbxproj

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@
181181
);
182182
runOnlyForDeploymentPostprocessing = 0;
183183
shellPath = /bin/sh;
184-
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"$WITH_ENVIRONMENT $REACT_NATIVE_XCODE\"\n";
184+
shellScript = "set -e\n\nWITH_ENVIRONMENT=\"$REACT_NATIVE_PATH/scripts/xcode/with-environment.sh\"\nREACT_NATIVE_XCODE=\"$REACT_NATIVE_PATH/scripts/react-native-xcode.sh\"\n\n/bin/sh -c \"\\\"$WITH_ENVIRONMENT\\\" \\\"$REACT_NATIVE_XCODE\\\"\"\n";
185185
};
186186
00EEFC60759A1932668264C0 /* [CP] Embed Pods Frameworks */ = {
187187
isa = PBXShellScriptBuildPhase;
@@ -368,6 +368,7 @@
368368
);
369369
MTL_ENABLE_DEBUG_INFO = YES;
370370
ONLY_ACTIVE_ARCH = YES;
371+
OTHER_CFLAGS = "$(inherited)";
371372
OTHER_CPLUSPLUSFLAGS = (
372373
"$(OTHER_CFLAGS)",
373374
"-DFOLLY_NO_CONFIG",
@@ -436,6 +437,7 @@
436437
"\"$(inherited)\"",
437438
);
438439
MTL_ENABLE_DEBUG_INFO = NO;
440+
OTHER_CFLAGS = "$(inherited)";
439441
OTHER_CPLUSPLUSFLAGS = (
440442
"$(OTHER_CFLAGS)",
441443
"-DFOLLY_NO_CONFIG",

0 commit comments

Comments
 (0)