devfsmalik
devfsmalik
``` /app/node_modules/@react-native/polyfills/error-guard.js:14 type ErrorHandler = (error: mixed, isFatal: boolean) => void; ^^^^^^^^^^^^ facing same issue: SyntaxError: Unexpected identifier at Runtime.createScriptFromCode (../../node_modules/jest-runtime/build/index.js:1350:14) at Object. (../../node_modules/react-native/jest/setup.js:439:6) ```
thanks for reply. Yes official Sdk supports this but API not exposed to initiate Profile Reading. It is internally managed by SDK to read profile and show gear button (settings)...
Are you able to get it work ? I think path in your AppDelegate.m file is not correct for "index" file.
**facing similar issue. Not able to archive iOS build. Working fine in debug mode when I run from CLI or run from Xcode it works fine.** @WookieFPV @brunolemos if you...
I am able to get it work using some hack. I have to update node_modules/react-native/scripts/react-native-xcode.sh Updated `PROJECT_ROOT=${PROJECT_ROOT:-"$REACT_NATIVE_DIR/../.."}` to `PROJECT_ROOT=${PROJECT_ROOT:-"$REACT_NATIVE_DIR/../../packages/mobile/"}` also will require to update ` ENTRY_FILE=${1:-index.js}` to `ENTRY_FILE=${1:-index.tsx}` I am...