diff --git a/docs/platforms/react-native/manual-setup/manual-setup.mdx b/docs/platforms/react-native/manual-setup/manual-setup.mdx index b2c7a18aca8e3..bf994951660fc 100644 --- a/docs/platforms/react-native/manual-setup/manual-setup.mdx +++ b/docs/platforms/react-native/manual-setup/manual-setup.mdx @@ -60,18 +60,17 @@ To this: set -e WITH_ENVIRONMENT="../node_modules/react-native/scripts/xcode/with-environment.sh" -REACT_NATIVE_XCODE="../node_modules/react-native/scripts/react-native-xcode.sh" SENTRY_XCODE="../node_modules/@sentry/react-native/scripts/sentry-xcode.sh" # RN 0.81.1+ -/bin/sh -c "$WITH_ENVIRONMENT /bin/sh $SENTRY_XCODE $REACT_NATIVE_XCODE" +/bin/sh -c "$WITH_ENVIRONMENT $SENTRY_XCODE" # RN 0.69 - 0.80.0 -# BUNDLE_REACT_NATIVE="/bin/sh $SENTRY_XCODE $REACT_NATIVE_XCODE" +# BUNDLE_REACT_NATIVE="/bin/sh $SENTRY_XCODE" # /bin/sh -c "$WITH_ENVIRONMENT \"$BUNDLE_REACT_NATIVE\"" # RN 0.46 – 0.68 -# BUNDLE_REACT_NATIVE="/bin/sh $SENTRY_XCODE $REACT_NATIVE_XCODE" +# BUNDLE_REACT_NATIVE="/bin/sh $SENTRY_XCODE" # /bin/sh -c "$BUNDLE_REACT_NATIVE" ```