Instabug / Instabug-React-Native

In-app feedback and bug reporting tool for React Native
https://instabug.com/platforms/react-native
MIT License
310 stars 100 forks source link

PhaseScriptExecution [CP-User] #1046

Closed oregev closed 10 months ago

oregev commented 11 months ago

When building for IOS:

react-native: 0.72.3 instabug-reactnative: ^12.1.0 node: 18.17.1 xcode: 14.3 (14E222b) using hermes.

The following build commands failed: PhaseScriptExecution [CP-User]\ [instabug-reactnative]\ Upload\ Sourcemap /Users/or/Library/Developer/Xcode/DerivedData/dataLive-dbsqownphsetxogfvbmyxcwsqsqv/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Script-544CED3453ED0014E2F7EDB7.sh (in target 'datalive' from project 'datalive')

This is the file in the error:

!/bin/sh

!/bin/sh

main() { if [[ "$INSTABUG_SOURCEMAPS_UPLOAD_DISABLE" = false ]]; then echo "[Info] `INSTABUG_SOURCEMAPS_UPLOAD_DISABLE` was set to true, skipping sourcemaps upload..." exit 0 fi

if [[ "$CONFIGURATION" = "Debug" ]]; then echo "[Info] Building in debug mode, skipping sourcemaps upload..." exit 0 fi

if [[ -z "$INFOPLIST_FILE" ]] || [[ -z "$PROJECT_DIR" ]]; then echo "[Error] Instabug sourcemaps script must be invoked by Xcode" exit 0 fi

local source_map_file=$(generate_sourcemaps | tail -n 1)

local js_project_dir="$PROJECT_DIR/.." local instabug_dir=$(dirname $(node -p "require.resolve('instabug-reactnative/package.json')")) local inferred_token=$(cd $js_project_dir && source $instabug_dir/scripts/find-token.sh) local app_token=$(resolve_var "App Token" "INSTABUG_APP_TOKEN" "$inferred_token" | tail -n 1)

local inferred_name=$(/usr/libexec/PlistBuddy -c 'print CFBundleShortVersionString' "$PROJECT_DIR/$INFOPLIST_FILE") local version_name=$(resolve_var "Version Name" "INSTABUG_APP_VERSION_NAME" "$inferred_name" | tail -n 1)

local inferred_code=$(/usr/libexec/PlistBuddy -c 'print CFBundleVersion' "$PROJECT_DIR/$INFOPLIST_FILE") local version_code=$(resolve_var "Version Code" "INSTABUG_APP_VERSION_CODE" "$inferred_code" | tail -n 1)

node $instabug_dir/bin/index.js upload-sourcemaps \ --platform ios \ --file $source_map_file \ --token $app_token \ --name $version_name \ --code $version_code }

generate_sourcemaps() { local react_native_dir=$(dirname $(node -p "require.resolve('react-native/package.json')"))

Fixes an issue with react-native prior to v0.67.0

For more info: https://github.com/facebook/react-native/issues/32168

export RN_DIR=$react_native_dir

Used withing react-native-xcode.sh to generate sourcemap file

export SOURCEMAP_FILE="$(pwd)/main.jsbundle.map";

source "$react_native_dir/scripts/react-native-xcode.sh"

if [[ ! -f "$SOURCEMAP_FILE" ]]; then echo "[Error] Unable to find source map file at: $SOURCEMAP_FILE" exit 0 fi

echo $SOURCEMAP_FILE }

resolve_var() { local name=$1 local env_key=$2 local default_value=$3

local env_value="${!env_key}"

if [[ -n "$env_value" ]] && [[ "$env_value" != default_value ]]; then echo "[Warning] Environment variable `$env_key` might have incorrect value, make sure this was intentional:" echo " Environment Value: $env_value" echo " Default Value: $default_value" fi

local value="${env_value:-$default_value}"

if [[ -z "$value" ]]; then echo "[Error] Unable to find $name! Set the environment variable `$env_key` and try again." exit 0 fi

echo $value }

main "$@"; exit

abdelhamid-f-nasser commented 11 months ago

Hi @oregev 👋 ,

Thank you for reporting this issue 🙏. To further debug this issue could we need to check the logs of the sourcemaps upload script (check the steps below). Could you please follow these steps and send us the logs.

Here are the steps:

  1. Open the ios/YourApp.xcworkspace file in Xcode.

  2. Build the app in release mode.

After that they can see the logs by:

  1. Open the “Report” tab (marked with 1).

  2. Choose the latest report of your build (marked with 2).

  3. Look for the [instabug-reactnative] Upload Sourcemap phase (you can use the search bar above to avoid the cluttered logs), then expand it by pressing the icon on the right of mark 3 and give us the logs.

image

ShaulBenDavid commented 11 months ago

@abdelhamid-f-nasser Hey I am a team member of Or, I did what you asked for, that what I got `PhaseScriptExecution [CP-User]\ [instabug-reactnative]\ Upload\ Sourcemap /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Script-8684DCA9121FB5CDF97DDB01.sh (in target 'datalive' from project 'datalive') cd /Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export ACTION\=build export AD_HOC_CODE_SIGNING_ALLOWED\=YES export AGGREGATE_TRACKED_DOMAINS\=YES export ALLOW_TARGET_PLATFORM_SPECIALIZATION\=NO export ALTERNATE_GROUP\=staff export ALTERNATE_MODE\=u+w,go-w,a+rX export ALTERNATE_OWNER\=shaul-ben-david export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=YES export ALWAYS_SEARCH_USER_PATHS\=NO export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer export APPLE_INTERNAL_DIR\=/AppleInternal export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools export APPLICATION_EXTENSION_API_ONLY\=NO export APPLY_RULES_IN_COPY_FILES\=NO export APPLY_RULES_IN_COPY_HEADERS\=NO export APP_NAME\=DataLive\ Dev export APP_SHORTCUTS_ENABLE_FLEXIBLE_MATCHING\=YES export ARCHS\=arm64 export ARCHS_STANDARD\=arm64\ x86_64 export ARCHS_STANDARD_32_64_BIT\=arm64\ i386\ x86_64 export ARCHS_STANDARD_32_BIT\=i386 export ARCHS_STANDARD_64_BIT\=arm64\ x86_64 export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64\ x86_64 export ARCHS_UNIVERSAL_IPHONE_OS\=arm64\ i386\ x86_64 export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon export ASSETCATALOG_COMPILER_GENERATE_ASSET_SYMBOLS\=YES export ASSETCATALOG_COMPILER_INCLUDE_ALL_APPICON_ASSETS\=NO export ASSETCATALOG_FILTER_FOR_DEVICE_MODEL\=iPad13,17 export ASSETCATALOG_FILTER_FOR_DEVICE_OS_VERSION\=17.0.1 export ASSETCATALOG_FILTER_FOR_THINNING_DEVICE_CONFIGURATION\=iPad13,17 export AUTOMATICALLY_MERGE_DEPENDENCIES\=NO export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ driverkit\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator export AppIdentifierPrefix\=L9WADQ34W7. export BITCODE_GENERATION_MODE\=marker export BUILD_ACTIVE_RESOURCES_ONLY\=YES export BUILD_COMPONENTS\=headers\ build export BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO export BUILD_ROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products export BUILD_STYLE\= export BUILD_VARIANTS\=normal export BUILT_PRODUCTS_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/ export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS export BUNDLE_EXTENSIONS_FOLDER_PATH\=Extensions export BUNDLE_FORMAT\=shallow export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers export CACHE_ROOT\=/var/folders/bk/99v656x13hlbf5b6j9scpgh40000gn/C/com.apple.DeveloperTools/15.0.1-15A507/Xcode export CCHROOT\=/var/folders/bk/99v656x13hlbf5b6j9scpgh40000gn/C/com.apple.DeveloperTools/15.0.1-15A507/Xcode export CHMOD\=/bin/chmod export CHOWN\=/usr/sbin/chown export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED\=YES export CLANG_COMPILE_CACHE_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/CompilationCache.noindex export CLANG_CXX_LANGUAGE_STANDARD\=gnu++14 export CLANG_CXX_LIBRARY\=libc++ export CLANG_ENABLE_EXPLICIT_MODULES\=NO export CLANG_ENABLE_MODULES\=YES export CLANG_ENABLE_OBJC_ARC\=YES export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES export CLANG_WARN_BOOL_CONVERSION\=YES export CLANG_WARN_COMMA\=YES export CLANG_WARN_CONSTANT_CONVERSION\=YES export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR export CLANG_WARN_EMPTY_BODY\=YES export CLANG_WARN_ENUM_CONVERSION\=YES export CLANG_WARN_INFINITE_RECURSION\=YES export CLANG_WARN_INT_CONVERSION\=YES export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR export CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER\=NO export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES export CLANG_WARN_STRICT_PROTOTYPES\=YES export CLANG_WARN_SUSPICIOUS_MOVE\=YES export CLANG_WARN_UNREACHABLE_CODE\=YES export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES export CLASS_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/JavaClasses export CLEAN_PRECOMPS\=YES export CLONE_HEADERS\=NO export CODESIGNING_FOLDER_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/datalive.app export CODE_SIGNING_ALLOWED\=YES export CODE_SIGNING_REQUIRED\=YES export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneSimulatorCodeSignContext export CODE_SIGN_IDENTITY\=- export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES export COLOR_DIAGNOSTICS\=NO export COMBINE_HIDPI_IMAGES\=NO export COMPILER_INDEX_STORE_ENABLE\=Default export COMPOSITE_SDK_DIRS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/CompositeSDKs export COMPRESS_PNG_FILES\=YES export CONFIGURATION\=DevDebug export CONFIGURATION_BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator export CONFIGURATION_TEMP_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator export CONTENTS_FOLDER_PATH\=datalive.app export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO\=datalive.app/Contents export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES\=datalive.app export COPYING_PRESERVES_HFS_DATA\=NO export COPY_HEADERS_RUN_UNIFDEF\=NO export COPY_PHASE_STRIP\=NO export CORRESPONDING_DEVICE_PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform export CORRESPONDING_DEVICE_PLATFORM_NAME\=iphoneos export CORRESPONDING_DEVICE_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk export CORRESPONDING_DEVICE_SDK_NAME\=iphoneos17.0 export CP\=/bin/cp export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO export CURRENT_ARCH\=undefined_arch export CURRENT_PROJECT_VERSION\=130 export CURRENT_VARIANT\=normal export DEAD_CODE_STRIPPING\=YES export DEBUGGING_SYMBOLS\=YES export DEBUG_INFORMATION_FORMAT\=dwarf-with-dsym export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0 export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions export DEFINES_MODULE\=NO export DEPLOYMENT_LOCATION\=NO export DEPLOYMENT_POSTPROCESSING\=NO export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 13.6\ 14.0\ 14.1\ 14.2\ 14.3\ 14.4\ 14.5\ 14.6\ 14.7\ 15.0\ 15.1\ 15.2\ 15.3\ 15.4\ 15.5\ 15.6\ 16.0\ 16.1\ 16.2\ 16.3\ 16.4\ 16.5\ 16.6\ 17.0 export DERIVED_FILES_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/DerivedSources export DERIVED_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/DerivedSources export DERIVED_SOURCES_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/DerivedSources export DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export DEVELOPER_FRAMEWORKS_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Applications/Xcode.app/Contents/Developer/Library/Frameworks export DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Library export DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs export DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Tools export DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export DEVELOPMENT_LANGUAGE\=en export DEVELOPMENT_TEAM\=L9WADQ34W7 export DIFF\=/usr/bin/diff export DOCUMENTATION_FOLDER_PATH\=datalive.app/en.lproj/Documentation export DONT_GENERATE_INFOPLIST_FILE\=NO export DO_HEADER_SCANNING_IN_JAM\=NO export DSTROOT\=/tmp/datalive.dst export DT_TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export DWARF_DSYM_FILE_NAME\=datalive.app.dSYM export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO export DWARF_DSYM_FOLDER_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator export DYNAMIC_LIBRARY_EXTENSION\=dylib export EAGER_LINKING\=NO export EFFECTIVE_PLATFORM_NAME\=-iphonesimulator export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO export ENABLE_APP_SANDBOX\=NO export ENABLE_BITCODE\=NO export ENABLE_CODE_COVERAGE\=YES export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES export ENABLE_DEFAULT_SEARCH_PATHS\=YES export ENABLE_HARDENED_RUNTIME\=NO export ENABLE_HEADER_DEPENDENCIES\=YES export ENABLE_ON_DEMAND_RESOURCES\=YES export ENABLE_PREVIEWS\=NO export ENABLE_STRICT_OBJC_MSGSEND\=YES export ENABLE_TESTABILITY\=YES export ENABLE_TESTING_SEARCH_PATHS\=NO export ENABLE_USER_SCRIPT_SANDBOXING\=NO export ENABLE_XOJIT_PREVIEWS\=NO export ENTITLEMENTS_ALLOWED\=NO export ENTITLEMENTS_DESTINATION\=__entitlements export ENTITLEMENTS_REQUIRED\=NO export EXCLUDED_ARCHS\=i386 export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=*.nib\ *.lproj\ *.framework\ *.gch\ *.xcode*\ *.xcassets\ (*)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ *.pbproj\ *.pbxproj export EXECUTABLES_FOLDER_PATH\=datalive.app/Executables export EXECUTABLE_FOLDER_PATH\=datalive.app export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO\=datalive.app/MacOS export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES\=datalive.app export EXECUTABLE_NAME\=datalive export EXECUTABLE_PATH\=datalive.app/datalive export EXPANDED_CODE_SIGN_IDENTITY\=- export EXPANDED_CODE_SIGN_IDENTITY_NAME\=- export EXTENSIONS_FOLDER_PATH\=datalive.app/Extensions export FILE_LIST\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects/LinkFileList export FIXED_FILES_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/FixedFiles export FRAMEWORKS_FOLDER_PATH\=datalive.app/Frameworks export FRAMEWORK_FLAG_PREFIX\=-framework export FRAMEWORK_SEARCH_PATHS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator\ \ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Instabug\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/hermes-engine/destroot/Library/Frameworks/universal\"\ \"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/XCFrameworkIntermediates/Instabug\"\ \"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/XCFrameworkIntermediates/hermes-engine/Pre-built\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Instabug/\" export FRAMEWORK_VERSION\=A export FULL_PRODUCT_NAME\=datalive.app export FUSE_BUILD_PHASES\=YES export FUSE_BUILD_SCRIPT_PHASES\=NO export GCC3_VERSION\=3.3 export GCC_C_LANGUAGE_STANDARD\=gnu99 export GCC_DYNAMIC_NO_PIC\=NO export GCC_INLINES_ARE_PRIVATE_EXTERN\=YES export GCC_NO_COMMON_BLOCKS\=YES export GCC_OBJC_LEGACY_DISPATCH\=YES export GCC_OPTIMIZATION_LEVEL\=0 export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++ export GCC_PREPROCESSOR_DEFINITIONS\=DEBUG\=1\ \ COCOAPODS\=1 export GCC_SYMBOLS_PRIVATE_EXTERN\=NO export GCC_TREAT_WARNINGS_AS_ERRORS\=NO export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0 export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0 export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR export GCC_WARN_UNDECLARED_SELECTOR\=YES export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE export GCC_WARN_UNUSED_FUNCTION\=YES export GCC_WARN_UNUSED_VARIABLE\=YES export GENERATED_MODULEMAP_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/GeneratedModuleMaps-iphonesimulator export GENERATE_INFOPLIST_FILE\=NO export GENERATE_INTERMEDIATE_TEXT_BASED_STUBS\=YES export GENERATE_MASTER_OBJECT_FILE\=NO export GENERATE_PKGINFO_FILE\=YES export GENERATE_PROFILING_CODE\=NO export GENERATE_TEXT_BASED_STUBS\=NO export GID\=20 export GROUP\=staff export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES export HEADERMAP_USES_VFS\=NO export HEADER_SEARCH_PATHS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/include\ \ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/ReactCommon-Samples/ReactCommon_Samples.framework/Headers\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-NativeModulesApple/React_NativeModulesApple.framework/Headers\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/BVLinearGradient\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/DoubleConversion\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/FBLazyVector\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/OktaOidc\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/OktaSdkBridgeReactNative\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCT-Folly\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCTRequired\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCTTypeSafety\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNCAsyncStorage\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNDeviceInfo\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNFS\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNFileViewer\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNGestureHandler\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNInstabug\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNSVG\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNScreens\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RNShare\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-Codegen\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-Core\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-NativeModulesApple\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-RCTAnimation\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-RCTAppDelegate\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-RCTBlob\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-RCTText\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-callinvoker\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-cxxreact\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-debug\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-hermes\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-jsi\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-jsiexecutor\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-jsinspector\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-logger\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-perflogger\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-runtimeexecutor\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-runtimescheduler\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React-utils\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/ReactCommon\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/ReactNativeART\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/SocketRocket\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/Yoga\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/fmt\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/glog\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/hermes-engine\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/libevent\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-config\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-html-to-pdf\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-orientation-locker\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-safe-area-context\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-video\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-view-shot\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/react-native-webview\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/DoubleConversion\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/boost\"\ \"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Private/React-Core\"\ \"/include/\" export HIDE_BITCODE_SYMBOLS\=YES export HOME\=/Users/shaul-ben-david export HOST_ARCH\=arm64 export HOST_PLATFORM\=macosx export ICONV\=/usr/bin/iconv export INFOPLIST_ENABLE_CFBUNDLEICONS_MERGE\=YES export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES export INFOPLIST_FILE\=datalive/Info.plist export INFOPLIST_KEY_CFBundleDisplayName\=DataLive\ Dev export INFOPLIST_OUTPUT_FORMAT\=binary export INFOPLIST_PATH\=datalive.app/Info.plist export INFOPLIST_PREPROCESS\=NO export INFOSTRINGS_PATH\=datalive.app/en.lproj/InfoPlist.strings export INLINE_PRIVATE_FRAMEWORKS\=NO export INSTALLHDRS_COPY_PHASE\=NO export INSTALLHDRS_SCRIPT_PHASE\=NO export INSTALL_DIR\=/tmp/datalive.dst/Applications export INSTALL_GROUP\=staff export INSTALL_MODE_FLAG\=u+w,go-w,a+rX export INSTALL_OWNER\=shaul-ben-david export INSTALL_PATH\=/Applications export INSTALL_ROOT\=/tmp/datalive.dst export IPHONEOS_DEPLOYMENT_TARGET\=13.4 export IS_UNOPTIMIZED_BUILD\=YES export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8 export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub export JAVA_ARCHIVE_CLASSES\=YES export JAVA_ARCHIVE_TYPE\=JAR export JAVA_COMPILER\=/usr/bin/javac export JAVA_FOLDER_PATH\=datalive.app/Java export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources export JAVA_JAR_FLAGS\=cv export JAVA_SOURCE_SUBDIR\=. export JAVA_USE_DEPENDENCIES\=YES export JAVA_ZIP_FLAGS\=-urg export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO export KEEP_PRIVATE_EXTERNS\=NO export LD_DEPENDENCY_INFO_FILE\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal/undefined_arch/datalive_dependency_info.dat export LD_ENTITLEMENTS_SECTION\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/datalive.app-Simulated.xcent export LD_ENTITLEMENTS_SECTION_DER\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/datalive.app-Simulated.xcent.der export LD_EXPORT_SYMBOLS\=YES export LD_GENERATE_MAP_FILE\=NO export LD_MAP_FILE_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/datalive-LinkMap-normal-undefined_arch.txt export LD_NO_PIE\=NO export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES export LD_RUNPATH_SEARCH_PATHS\=/usr/lib/swift\ \ /usr/lib/swift\ \'@executable_path/Frameworks\'\ \'@loader_path/Frameworks\'\ @executable_path/Frameworks export LD_RUNPATH_SEARCH_PATHS_YES\=@loader_path/../Frameworks export LEGACY_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer export LEX\=lex export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions export LIBRARY_FLAG_NOSPACE\=YES export LIBRARY_FLAG_PREFIX\=-l export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions export LIBRARY_SEARCH_PATHS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/lib/swift\ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator\ /Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphonesimulator\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/BVLinearGradient\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/DoubleConversion\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaOidc\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaSdkBridgeReactNative\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RCT-Folly\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RCTTypeSafety\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNCAsyncStorage\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNDeviceInfo\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNFS\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNFileViewer\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNGestureHandler\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNInstabug\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNSVG\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNScreens\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/RNShare\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-Codegen\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-Core\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-CoreModules\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-NativeModulesApple\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTAnimation\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTAppDelegate\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTBlob\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTImage\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTLinking\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTNetwork\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTSettings\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTText\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-RCTVibration\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-cxxreact\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-debug\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-hermes\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-jsi\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-jsiexecutor\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-jsinspector\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-logger\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-perflogger\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-runtimescheduler\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/React-utils\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/ReactCommon\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/ReactNativeART\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/SocketRocket\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/Yoga\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/fmt\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/glog\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/libevent\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-config\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-html-to-pdf\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-orientation-locker\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-safe-area-context\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-video\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-view-shot\ /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/react-native-webview\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/usr/lib/swift export LINKER_DISPLAYS_MANGLED_NAMES\=NO export LINK_FILE_LIST_normal_arm64\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal/arm64/datalive.LinkFileList export LINK_OBJC_RUNTIME\=YES export LINK_WITH_STANDARD_LIBRARIES\=YES export LLVM_TARGET_TRIPLE_OS_VERSION\=ios13.4 export LLVM_TARGET_TRIPLE_SUFFIX\=-simulator export LLVM_TARGET_TRIPLE_VENDOR\=apple export LOCALIZATION_EXPORT_SUPPORTED\=YES export LOCALIZATION_PREFERS_STRING_CATALOGS\=NO export LOCALIZED_RESOURCES_FOLDER_PATH\=datalive.app/en.lproj export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities export LOCAL_APPS_DIR\=/Applications export LOCAL_DEVELOPER_DIR\=/Library/Developer export LOCAL_LIBRARY_DIR\=/Library export LOCROOT\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export LOCSYMROOT\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export MACH_O_TYPE\=mh_execute export MAC_OS_X_PRODUCT_BUILD_VERSION\=23A344 export MAC_OS_X_VERSION_ACTUAL\=140000 export MAC_OS_X_VERSION_MAJOR\=140000 export MAC_OS_X_VERSION_MINOR\=140000 export MAKE_MERGEABLE\=NO export MARKETING_VERSION\=0.2.3 export MERGEABLE_LIBRARY\=NO export MERGED_BINARY_TYPE\=none export MERGE_LINKED_LIBRARIES\=NO export METAL_LIBRARY_FILE_BASE\=default export METAL_LIBRARY_OUTPUT_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/datalive.app export MODULES_FOLDER_PATH\=datalive.app/Modules export MODULE_CACHE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/ModuleCache.noindex export MTL_ENABLE_DEBUG_INFO\=YES export NATIVE_ARCH\=arm64 export NATIVE_ARCH_32_BIT\=arm export NATIVE_ARCH_64_BIT\=arm64 export NATIVE_ARCH_ACTUAL\=arm64 export NO_COMMON\=YES export OBJC_ABI_VERSION\=2 export OBJECT_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects export OBJECT_FILE_DIR_normal\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal export OBJROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex export ONLY_ACTIVE_ARCH\=YES export OS\=MACOS export OSAC\=/usr/bin/osacompile export OTHER_CFLAGS\=\ \ \ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaOidc/OktaOidc.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaSdkBridgeReactNative/OktaSdkBridgeReactNative.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_Codegen/React-Codegen.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_NativeModulesApple/React-NativeModulesApple.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export OTHER_CPLUSPLUSFLAGS\=\ \ \ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaOidc/OktaOidc.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaSdkBridgeReactNative/OktaSdkBridgeReactNative.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_Codegen/React-Codegen.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_NativeModulesApple/React-NativeModulesApple.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/yoga/Yoga.modulemap\"\ -DFOLLY_NO_CONFIG\ -DFOLLY_MOBILE\=1\ -DFOLLY_USE_LIBCPP\=1 export OTHER_LDFLAGS\=\ -ObjC\ -l\"BVLinearGradient\"\ -l\"DoubleConversion\"\ -l\"OktaOidc\"\ -l\"OktaSdkBridgeReactNative\"\ -l\"RCT-Folly\"\ -l\"RCTTypeSafety\"\ -l\"RNCAsyncStorage\"\ -l\"RNDeviceInfo\"\ -l\"RNFS\"\ -l\"RNFileViewer\"\ -l\"RNGestureHandler\"\ -l\"RNInstabug\"\ -l\"RNSVG\"\ -l\"RNScreens\"\ -l\"RNShare\"\ -l\"React-Codegen\"\ -l\"React-Core\"\ -l\"React-CoreModules\"\ -l\"React-NativeModulesApple\"\ -l\"React-RCTAnimation\"\ -l\"React-RCTAppDelegate\"\ -l\"React-RCTBlob\"\ -l\"React-RCTImage\"\ -l\"React-RCTLinking\"\ -l\"React-RCTNetwork\"\ -l\"React-RCTSettings\"\ -l\"React-RCTText\"\ -l\"React-RCTVibration\"\ -l\"React-cxxreact\"\ -l\"React-debug\"\ -l\"React-hermes\"\ -l\"React-jsi\"\ -l\"React-jsiexecutor\"\ -l\"React-jsinspector\"\ -l\"React-logger\"\ -l\"React-perflogger\"\ -l\"React-runtimescheduler\"\ -l\"React-utils\"\ -l\"ReactCommon\"\ -l\"ReactNativeART\"\ -l\"SocketRocket\"\ -l\"Yoga\"\ -l\"c++\"\ -l\"c++abi\"\ -l\"fmt\"\ -l\"glog\"\ -l\"icucore\"\ -l\"libevent\"\ -l\"react-native-config\"\ -l\"react-native-html-to-pdf\"\ -l\"react-native-orientation-locker\"\ -l\"react-native-safe-area-context\"\ -l\"react-native-video\"\ -l\"react-native-view-shot\"\ -l\"react-native-webview\"\ -l\"z\"\ -framework\ \"AudioToolbox\"\ -framework\ \"CFNetwork\"\ -framework\ \"Foundation\"\ -framework\ \"Instabug\"\ -framework\ \"JavaScriptCore\"\ -framework\ \"MobileCoreServices\"\ -framework\ \"QuartzCore\"\ -framework\ \"Security\"\ -framework\ \"UIKit\"\ -framework\ \"hermes\"\ -weak_framework\ \"LinkPresentation\"\ -ObjC\ -lc++ export OTHER_SWIFT_FLAGS\=\ -D\ COCOAPODS\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaOidc/OktaOidc.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaSdkBridgeReactNative/OktaSdkBridgeReactNative.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/RCTTypeSafety/RCTTypeSafety.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React/React-Core.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/ReactCommon/ReactCommon.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_Codegen/React-Codegen.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/React_NativeModulesApple/React-NativeModulesApple.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/folly/RCT-Folly.modulemap\"\ -Xcc\ -fmodule-map-file\=\"/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/Headers/Public/yoga/Yoga.modulemap\" export PACKAGE_TYPE\=com.apple.package-type.wrapper.application export PASCAL_STRINGS\=YES export PATH\=/Applications/Xcode.app/Contents/Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin/Contents/Resources:/Applications/Xcode.app/Contents/Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/appleinternal/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/usr/local/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/local/bin:/Applications/Xcode.app/Contents/Developer/usr/bin:/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Applications/Xcode.app/Contents/Developer/Headers\ /Applications/Xcode.app/Contents/Developer/SDKs\ /Applications/Xcode.app/Contents/Developer/Platforms export PBDEVELOPMENTPLIST_PATH\=datalive.app/pbdevelopment.plist export PER_ARCH_OBJECT_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal/undefined_arch export PER_VARIANT_OBJECT_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal export PKGINFO_FILE_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/PkgInfo export PKGINFO_PATH\=datalive.app/PkgInfo export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Applications export PLATFORM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/bin export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library export PLATFORM_DEVELOPER_SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs export PLATFORM_DEVELOPER_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Tools export PLATFORM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr export PLATFORM_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform export PLATFORM_DISPLAY_NAME\=iOS\ Simulator export PLATFORM_FAMILY_NAME\=iOS export PLATFORM_NAME\=iphonesimulator export PLATFORM_PREFERRED_ARCH\=x86_64 export PLATFORM_PRODUCT_BUILD_VERSION\=21A326 export PLIST_FILE_OUTPUT_FORMAT\=binary export PLUGINS_FOLDER_PATH\=datalive.app/PlugIns export PODS_BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products export PODS_CONFIGURATION_BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator export PODS_PODFILE_DIR_PATH\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/. export PODS_ROOT\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods export PODS_XCFRAMEWORKS_BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/XCFrameworkIntermediates export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES export PRECOMP_DESTINATION_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/PrefixHeaders export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO export PRIVATE_HEADERS_FOLDER_PATH\=datalive.app/PrivateHeaders export PRODUCT_BUNDLE_IDENTIFIER\=com.datalivehub.dev export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL export PRODUCT_MODULE_NAME\=datalive export PRODUCT_NAME\=datalive export PRODUCT_SETTINGS_PATH\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/datalive/Info.plist export PRODUCT_TYPE\=com.apple.product-type.application export PROFILING_CODE\=NO export PROJECT\=datalive export PROJECT_DERIVED_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DerivedSources export PROJECT_DIR\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export PROJECT_FILE_PATH\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/datalive.xcodeproj export PROJECT_NAME\=datalive export PROJECT_TEMP_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build export PROJECT_TEMP_ROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex export PROVISIONING_PROFILE_REQUIRED\=NO export PROVISIONING_PROFILE_REQUIRED_YES_YES\=YES export PROVISIONING_PROFILE_SUPPORTED\=YES export PUBLIC_HEADERS_FOLDER_PATH\=datalive.app/Headers export REACT_NATIVE_PATH\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Pods/../../node_modules/react-native export RECOMMENDED_IPHONEOS_DEPLOYMENT_TARGET\=12.5 export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES export REMOVE_CVS_FROM_RESOURCES\=YES export REMOVE_GIT_FROM_RESOURCES\=YES export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_HG_FROM_RESOURCES\=YES export REMOVE_STATIC_EXECUTABLES_FROM_EMBEDDED_BUNDLES\=YES export REMOVE_SVN_FROM_RESOURCES\=YES export REZ_COLLECTOR_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/ResourceManagerResources export REZ_OBJECTS_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/ResourceManagerResources/Objects export REZ_SEARCH_PATHS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator\ export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO export SCRIPTS_FOLDER_PATH\=datalive.app/Scripts export SCRIPT_INPUT_FILE_COUNT\=0 export SCRIPT_INPUT_FILE_LIST_COUNT\=0 export SCRIPT_OUTPUT_FILE_COUNT\=0 export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0 export SDKROOT\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk export SDK_DIR\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk export SDK_DIR_iphonesimulator\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk export SDK_DIR_iphonesimulator17_0\=/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk export SDK_NAME\=iphonesimulator17.0 export SDK_NAMES\=iphonesimulator17.0 export SDK_PRODUCT_BUILD_VERSION\=21A326 export SDK_STAT_CACHE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData export SDK_STAT_CACHE_ENABLE\=YES export SDK_STAT_CACHE_PATH\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphonesimulator17.0-21A326-9f995cea1212cde75317d7d3cd2045e2.sdkstatcache export SDK_VERSION\=17.0 export SDK_VERSION_ACTUAL\=170000 export SDK_VERSION_MAJOR\=170000 export SDK_VERSION_MINOR\=170000 export SED\=/usr/bin/sed export SEPARATE_STRIP\=NO export SEPARATE_SYMBOL_EDIT\=NO export SET_DIR_MODE_OWNER_GROUP\=YES export SET_FILE_MODE_OWNER_GROUP\=NO export SHALLOW_BUNDLE\=YES export SHALLOW_BUNDLE_TRIPLE\=ios-simulator export SHALLOW_BUNDLE_ios_macabi\=NO export SHALLOW_BUNDLE_macos\=NO export SHARED_DERIVED_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/DerivedSources export SHARED_FRAMEWORKS_FOLDER_PATH\=datalive.app/SharedFrameworks export SHARED_PRECOMPS_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/PrecompiledHeaders export SHARED_SUPPORT_FOLDER_PATH\=datalive.app/SharedSupport export SKIP_INSTALL\=NO export SOURCE_ROOT\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export SRCROOT\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios export STRINGSDATA_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal/undefined_arch export STRINGSDATA_ROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build export STRINGS_FILE_INFOPLIST_RENAME\=YES export STRINGS_FILE_OUTPUT_ENCODING\=binary export STRIP_BITCODE_FROM_COPIED_FILES\=NO export STRIP_INSTALLED_PRODUCT\=NO export STRIP_STYLE\=all export STRIP_SWIFT_SYMBOLS\=YES export SUPPORTED_DEVICE_FAMILIES\=1,2 export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator export SUPPORTS_MACCATALYST\=NO export SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD\=YES export SUPPORTS_ON_DEMAND_RESOURCES\=YES export SUPPORTS_TEXT_BASED_API\=NO export SWIFT_EMIT_LOC_STRINGS\=NO export SWIFT_INCLUDE_PATHS\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator\ \ \"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaOidc\"\ \"/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/OktaSdkBridgeReactNative\" export SWIFT_OPTIMIZATION_LEVEL\=-Onone export SWIFT_PLATFORM_TARGET_PREFIX\=ios export SWIFT_RESPONSE_FILE_PATH_normal_arm64\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Objects-normal/arm64/datalive.SwiftFileList export SWIFT_VERSION\=5.0 export SYMROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities export SYSTEM_APPS_DIR\=/Applications export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices export SYSTEM_DEMOS_DIR\=/Applications/Extras export SYSTEM_DEVELOPER_APPS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications export SYSTEM_DEVELOPER_BIN_DIR\=/Applications/Xcode.app/Contents/Developer/usr/bin export SYSTEM_DEVELOPER_DEMOS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples export SYSTEM_DEVELOPER_DIR\=/Applications/Xcode.app/Contents/Developer export SYSTEM_DEVELOPER_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes export SYSTEM_DEVELOPER_TOOLS\=/Applications/Xcode.app/Contents/Developer/Tools export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools export SYSTEM_DEVELOPER_USR_DIR\=/Applications/Xcode.app/Contents/Developer/usr export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Applications/Xcode.app/Contents/Developer/Applications/Utilities export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation export SYSTEM_EXTENSIONS_FOLDER_PATH\=datalive.app/SystemExtensions export SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO\=datalive.app/Library/SystemExtensions export SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES\=datalive.app/SystemExtensions export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions export SYSTEM_LIBRARY_DIR\=/System/Library export TAPI_DEMANGLE\=YES export TAPI_ENABLE_PROJECT_HEADERS\=NO export TAPI_LANGUAGE\=objective-c export TAPI_LANGUAGE_STANDARD\=compiler-default export TAPI_USE_SRCROOT\=YES export TAPI_VERIFY_MODE\=Pedantic export TARGETED_DEVICE_FAMILY\=1,2 export TARGETNAME\=datalive export TARGET_BUILD_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator export TARGET_DEVICE_IDENTIFIER\=8748C03C-94CB-43DA-B619-B5460CD6FEAA export TARGET_DEVICE_MODEL\=iPad13,17 export TARGET_DEVICE_OS_VERSION\=17.0.1 export TARGET_DEVICE_PLATFORM_NAME\=iphonesimulator export TARGET_NAME\=datalive export TARGET_TEMP_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build export TEMP_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build export TEMP_FILES_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build export TEMP_FILE_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build export TEMP_ROOT\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/Library/Frameworks\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk/Developer/Library/Frameworks export TEST_LIBRARY_SEARCH_PATHS\=\ /Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/usr/lib export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault export TOOLCHAIN_DIR\=/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO export TeamIdentifierPrefix\=L9WADQ34W7. export UID\=501 export UNINSTALLED_PRODUCTS_DIR\=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/UninstalledProducts export UNLOCALIZED_RESOURCES_FOLDER_PATH\=datalive.app export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO\=datalive.app/Resources export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES\=datalive.app export UNSTRIPPED_PRODUCT\=NO export USER\=shaul-ben-david export USER_APPS_DIR\=/Users/shaul-ben-david/Applications export USER_HEADER_SEARCH_PATHS\=/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/ios/Sources/** export USER_LIBRARY_DIR\=/Users/shaul-ben-david/Library export USE_DYNAMIC_NO_PIC\=YES export USE_HEADERMAP\=YES export USE_HEADER_SYMLINKS\=NO export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR export VALIDATE_PRODUCT\=NO export VALID_ARCHS\=arm64\ arm64e\ i386\ x86_64 export VERBOSE_PBXCP\=NO export VERSIONING_SYSTEM\=apple-generic export VERSIONPLIST_PATH\=datalive.app/version.plist export VERSION_INFO_BUILDER\=shaul-ben-david export VERSION_INFO_FILE\=datalive_vers.c export VERSION_INFO_STRING\=\"@(#)PROGRAM:datalive\ \ PROJECT:datalive-130\" export WRAPPER_EXTENSION\=app export WRAPPER_NAME\=datalive.app export WRAPPER_SUFFIX\=.app export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO export XCODE_APP_SUPPORT_DIR\=/Applications/Xcode.app/Contents/Developer/Library/Xcode export XCODE_PRODUCT_BUILD_VERSION\=15A507 export XCODE_VERSION_ACTUAL\=1501 export XCODE_VERSION_MAJOR\=1500 export XCODE_VERSION_MINOR\=1500 export XPCSERVICES_FOLDER_PATH\=datalive.app/XPCServices export YACC\=yacc export _WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO\=/Contents export _WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO\=/.. export _WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO\=/Resources export IS_NOT_MACOS\=YES export IS_NOT_MACOS_macosx\=NO export IS_NOT_SIMULATOR\=NO export IS_NOT_SIMULATOR_simulator\=NO export arch\=undefined_arch export variant\=normal /bin/sh -c /Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Intermediates.noindex/datalive.build/DevDebug-iphonesimulator/datalive.build/Script-8684DCA9121FB5CDF97DDB01.sh

+++ DEST=/Users/shaul-ben-david/Library/Developer/Xcode/DerivedData/dataLive-ghxlaxoneejbdrcigubkpnwubppc/Build/Products/DevDebug-iphonesimulator/datalive.app +++ [[ ! -n '' ]] +++ [[ DevDebug = Debug ]] +++ [[ ! iphonesimulator == simulator ]] +++ [[ -n '' ]] +++ case "$CONFIGURATION" in +++ [[ iphonesimulator == simulator ]] +++ [[ -n '' ]] +++ echo 'Skipping bundling in Debug for the Simulator (since the packager bundles for you). Use the FORCE_BUNDLING flag to change this behavior.' +++ exit 0 node:fs:603 handleErrorFromBinding(ctx); ^

Error: ENOENT: no such file or directory, open 'Skipping' at Object.openSync (node:fs:603:3) at Object.readFileSync (node:fs:471:35) at uploadSourcemaps (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:17519:33) at Command. (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:17514:5) at Command.listener [as _actionHandler] (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:824:17) at /Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:1259:65 at Command._chainOrCall (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:1191:12) at Command._parseCommand (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:1259:27) at /Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:1118:27 at Command._chainOrCall (/Users/shaul-ben-david/Desktop/Web/SCR/colboynic/node_modules/instabug-reactnative/bin/index.js:1191:12) { errno: -2, syscall: 'open', code: 'ENOENT', path: 'Skipping' }

Node.js v18.17.1 Command PhaseScriptExecution failed with a nonzero exit code`

Bej-Technologies commented 11 months ago

Hello! I also experience the same issue, my logs are:

/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh: line 42: node: command not found

usage: dirname string [...]

/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh: line 51: /scripts/react-native-xcode.sh: No such file or directory

/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh: line 23: node: command not found

usage: dirname string [...]

/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh: line 24: /scripts/find-token.sh: No such file or directory

/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh: line 33: node: command not found
Bej-Technologies commented 11 months ago

It works when I change to your previous config:

#!/bin/sh
cd ${PROJECT_DIR}
cd ..
if [ -s "$HOME/.nvm/nvm.sh" ]; then
. "$HOME/.nvm/nvm.sh"
elif [ -x "$(command -v brew)" ] && [ -s "$(brew --prefix nvm)/nvm.sh" ]; then
. "$(brew --prefix nvm)/nvm.sh"
fi
export NODE_BINARY=node

INSTABUG_SOURCEMAPS_UPLOAD_DISABLE=$(echo $INSTABUG_SOURCEMAPS_UPLOAD_DISABLE | tr 'A-Z' 'a-z')
if [ "${INSTABUG_SOURCEMAPS_UPLOAD_DISABLE}" = "true" ]; then
    echo "Instabug: Environment variable INSTABUG_SOURCEMAPS_UPLOAD_DISABLE was set to true, skipping sourcemap upload"
    exit 0
fi

if [ ! "$INFOPLIST_FILE" ] || [ -z "$INFOPLIST_FILE" ]; then
    echo "Instabug: INFOPLIST_FILE not found in Xcode build settings, skipping sourcemap upload"
    exit 0
fi

if [ ! "${PROJECT_DIR}" ] || [ -z "${PROJECT_DIR}" ]; then
    echo "Instabug: PROJECT_DIR not found in Xcode build settings, skipping sourcemap upload"
    exit 0
fi

PLIST_ABS_PATH="$PROJECT_DIR/$INFOPLIST_FILE"
echo "Instabug: PLIST_ABS_PATH: $PLIST_ABS_PATH"

if [ ! "${INSTABUG_APP_TOKEN}" ] || [ -z "${INSTABUG_APP_TOKEN}" ]; then
    echo "Instabug: Looking for Token..."
    INSTABUG_APP_TOKEN=$(grep -r -A 6  --exclude-dir={node_modules,ios,android} --exclude='*.json' "Instabug.init({" ./ -m1 | grep "token:[[:space:]]*[\"\'][0-9a-zA-Z]*[\"\']" | grep -o "[\"\'][0-9a-zA-Z]*[\"\']" | cut -d "\"" -f 2 | cut -d "'" -f 2)
    if [ -z "${INSTABUG_APP_TOKEN}" ]; then
    INSTABUG_APP_TOKEN=$(grep -r --exclude-dir={node_modules,ios,android} --exclude='*.json' "Instabug.start[WithToken]*([\"\'][0-9a-zA-Z]*[\"\']" ./ -m 1 | grep -o "[\"\'][0-9a-zA-Z]*[\"\']" | cut -d "\"" -f 2 | cut -d "'" -f 2)
    fi
fi

if [ ! "${INSTABUG_APP_TOKEN}" ] || [ -z "${INSTABUG_APP_TOKEN}" ]; then
    echo "Instabug: INSTABUG_APP_TOKEN not found. Make sure you've added the SDK initialization line Instabug.init Or added the environment variable INSTABUG_APP_TOKEN"
    exit 0
else
    if [ ! "${INSTABUG_APP_VERSION_CODE}" ] || [ -z "${INSTABUG_APP_VERSION_CODE}" ]; then
        INSTABUG_APP_VERSION_CODE=$(/usr/libexec/PlistBuddy -c 'print CFBundleVersion' ${PLIST_ABS_PATH} )
        if [ ! "${INSTABUG_APP_VERSION_CODE}" ] || [ -z "${INSTABUG_APP_VERSION_CODE}" ]; then
            echo "CFBundleVersion could not be found, please upload the sourcemap files manually"
            exit 0
        fi
        INSTABUG_APP_VERSION_CODE_ENV=$(grep -o '$(.*)' <<< $INSTABUG_APP_VERSION_CODE | cut -d "(" -f2 | cut -d ")" -f1)
        if !([ ! "${INSTABUG_APP_VERSION_CODE_ENV}" ] || [ -z "${INSTABUG_APP_VERSION_CODE_ENV}" ]); then
            INSTABUG_APP_VERSION_CODE=${!INSTABUG_APP_VERSION_CODE_ENV}
            if [ ! "${INSTABUG_APP_VERSION_CODE}" ] || [ -z "${INSTABUG_APP_VERSION_CODE}" ]; then
                echo "Environment variable $INSTABUG_APP_VERSION_CODE_ENV was specified inside Info.plist but was not found, please upload the sourcemap files manually" 
                exit 0
            fi
        fi
    fi
    if [ ! "${INSTABUG_APP_VERSION_NAME}" ] || [ -z "${INSTABUG_APP_VERSION_NAME}" ]; then
        INSTABUG_APP_VERSION_NAME=$(/usr/libexec/PlistBuddy -c 'print CFBundleShortVersionString' ${PLIST_ABS_PATH} )
        if [ ! "${INSTABUG_APP_VERSION_NAME}" ] || [ -z "${INSTABUG_APP_VERSION_NAME}" ]; then
            echo "CFBundleShortVersionString could not be found, please upload the sourcemap files manually"
            exit 0
        fi
        INSTABUG_APP_VERSION_NAME_ENV=$(grep -o '$(.*)' <<< $INSTABUG_APP_VERSION_NAME | cut -d "(" -f2 | cut -d ")" -f1)
        if !([ ! "${INSTABUG_APP_VERSION_NAME_ENV}" ] || [ -z "${INSTABUG_APP_VERSION_NAME_ENV}" ]); then
            INSTABUG_APP_VERSION_NAME=${!INSTABUG_APP_VERSION_NAME_ENV}
            if [ ! "${INSTABUG_APP_VERSION_NAME}" ] || [ -z "${INSTABUG_APP_VERSION_NAME}" ]; then
                echo "Environment variable $INSTABUG_APP_VERSION_NAME_ENV was specified inside Info.plist but was not found, please upload the sourcemap files manually" 
                exit 0
            fi
        fi
    fi
    if [ -z "${INSTABUG_ENTRY_FILE}" ]; then 
        ENTRY_FILE='index.js'
    else 
        ENTRY_FILE=${INSTABUG_ENTRY_FILE}
    fi
    if [ ! -f $ENTRY_FILE ]; then
        echo "Instabug: err: entry file not found. Make sure" "\"${ENTRY_FILE}\"" "exists in your projects root directory. Or add the environment variable INSTABUG_ENTRY_FILE with the name of your entry file"
        exit 0
    fi
    VERSION='{"code":"'"$INSTABUG_APP_VERSION_CODE"'","name":"'"$INSTABUG_APP_VERSION_NAME"'"}'
    echo "Instabug: Token:" "\""${INSTABUG_APP_TOKEN}"\""
    echo "Instabug: VERSION: $VERSION"
    echo "Instabug: Entry file found" "\""${ENTRY_FILE}"\""
    echo "Instabug: Generating sourcemap files..."
    HERMES_ENABLED=$(grep hermes-engine ./ios/Podfile.lock -m 1)
    INSTALLED_RN_VERSION_MAJOR=$(node -p "require('react-native/package.json').version" | cut -d "." -f2)
    if [[ ! -z "$HERMES_ENABLED" && "$INSTALLED_RN_VERSION_MAJOR" -ge 65 && "$INSTALLED_RN_VERSION_MAJOR" -lt 70 ]]; then
        EXTRA_ARGS="--minify false"
    fi
    #Generate ios sourcemap
    npx react-native bundle --platform ios \
    --reset-cache \
    --entry-file $ENTRY_FILE \
    --dev false \
    --bundle-output ./ios/main.jsbundle \
    --sourcemap-output ./ios-sourcemap.json \
    $EXTRA_ARGS

    echo "Instabug: Uploading files..."
    #Upload ios sourcemap
    curl -X POST 'https://api.instabug.com/api/sdk/v3/symbols_files' -F "app_version=${VERSION}" -F "symbols_file=@./ios-sourcemap.json"  -F "application_token=${INSTABUG_APP_TOKEN}"  -F "platform=react_native"  -F "os=ios" 
    rm -rf ios-sourcemap.json
    echo 
fi

That gives me this output:

PhaseScriptExecution [CP-User]\ [instabug-reactnative]\ Upload\ Sourcemap /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh (in target 'app' from project 'app')
    cd /Users/danielwork/git/peak-energy/app/ios
    export ACTION\=install
    export AD_HOC_CODE_SIGNING_ALLOWED\=NO
    export AGGREGATE_TRACKED_DOMAINS\=YES
    export ALLOW_TARGET_PLATFORM_SPECIALIZATION\=NO
    export ALTERNATE_GROUP\=staff
    export ALTERNATE_MODE\=u+w,go-w,a+rX
    export ALTERNATE_OWNER\=danielwork
    export ALWAYS_EMBED_SWIFT_STANDARD_LIBRARIES\=YES
    export ALWAYS_SEARCH_USER_PATHS\=NO
    export ALWAYS_USE_SEPARATE_HEADERMAPS\=NO
    export APPLE_INTERNAL_DEVELOPER_DIR\=/AppleInternal/Developer
    export APPLE_INTERNAL_DIR\=/AppleInternal
    export APPLE_INTERNAL_DOCUMENTATION_DIR\=/AppleInternal/Documentation
    export APPLE_INTERNAL_LIBRARY_DIR\=/AppleInternal/Library
    export APPLE_INTERNAL_TOOLS\=/AppleInternal/Developer/Tools
    export APPLICATION_EXTENSION_API_ONLY\=NO
    export APPLY_RULES_IN_COPY_FILES\=NO
    export APPLY_RULES_IN_COPY_HEADERS\=NO
    export APP_SHORTCUTS_ENABLE_FLEXIBLE_MATCHING\=YES
    export ARCHS\=arm64
    export ARCHS_STANDARD\=arm64
    export ARCHS_STANDARD_32_64_BIT\=armv7\ arm64
    export ARCHS_STANDARD_32_BIT\=armv7
    export ARCHS_STANDARD_64_BIT\=arm64
    export ARCHS_STANDARD_INCLUDING_64_BIT\=arm64
    export ARCHS_UNIVERSAL_IPHONE_OS\=armv7\ arm64
    export ASSETCATALOG_COMPILER_APPICON_NAME\=AppIcon
    export ASSETCATALOG_COMPILER_FLATTENED_APP_ICON_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/ProductIcon.png
    export ASSETCATALOG_COMPILER_GENERATE_ASSET_SYMBOLS\=YES
    export ASSET_PACK_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation/OnDemandResources
    export AUTOMATICALLY_MERGE_DEPENDENCIES\=NO
    export AVAILABLE_PLATFORMS\=appletvos\ appletvsimulator\ driverkit\ iphoneos\ iphonesimulator\ macosx\ watchos\ watchsimulator
    export AppIdentifierPrefix\=VJXUVXS85R.
    export BITCODE_GENERATION_MODE\=bitcode
    export BUILD_ACTIVE_RESOURCES_ONLY\=NO
    export BUILD_COMPONENTS\=headers\ build
    export BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath
    export BUILD_LIBRARY_FOR_DISTRIBUTION\=NO
    export BUILD_ROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath
    export BUILD_STYLE\=
    export BUILD_VARIANTS\=normal
    export BUILT_PRODUCTS_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos
    export BUNDLE_CONTENTS_FOLDER_PATH_deep\=Contents/
    export BUNDLE_EXECUTABLE_FOLDER_NAME_deep\=MacOS
    export BUNDLE_EXTENSIONS_FOLDER_PATH\=Extensions
    export BUNDLE_FORMAT\=shallow
    export BUNDLE_FRAMEWORKS_FOLDER_PATH\=Frameworks
    export BUNDLE_PLUGINS_FOLDER_PATH\=PlugIns
    export BUNDLE_PRIVATE_HEADERS_FOLDER_PATH\=PrivateHeaders
    export BUNDLE_PUBLIC_HEADERS_FOLDER_PATH\=Headers
    export CACHE_ROOT\=/var/folders/_l/td_myb8s7_18f2yn16kl7x2c0000gp/C/com.apple.DeveloperTools/15.0-15A240d/Xcode
    export CCHROOT\=/var/folders/_l/td_myb8s7_18f2yn16kl7x2c0000gp/C/com.apple.DeveloperTools/15.0-15A240d/Xcode
    export CHMOD\=/bin/chmod
    export CHOWN\=/usr/sbin/chown
    export CLANG_ANALYZER_LOCALIZABILITY_NONLOCALIZED\=YES
    export CLANG_COMPILE_CACHE_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/CompilationCache.noindex
    export CLANG_CXX_LANGUAGE_STANDARD\=c++17
    export CLANG_CXX_LIBRARY\=libc++
    export CLANG_ENABLE_EXPLICIT_MODULES\=NO
    export CLANG_ENABLE_MODULES\=YES
    export CLANG_ENABLE_OBJC_ARC\=YES
    export CLANG_MODULES_BUILD_SESSION_FILE\=/Users/danielwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex/Session.modulevalidation
    export CLANG_WARN_BLOCK_CAPTURE_AUTORELEASING\=YES
    export CLANG_WARN_BOOL_CONVERSION\=YES
    export CLANG_WARN_COMMA\=YES
    export CLANG_WARN_CONSTANT_CONVERSION\=YES
    export CLANG_WARN_DEPRECATED_OBJC_IMPLEMENTATIONS\=YES
    export CLANG_WARN_DIRECT_OBJC_ISA_USAGE\=YES_ERROR
    export CLANG_WARN_EMPTY_BODY\=YES
    export CLANG_WARN_ENUM_CONVERSION\=YES
    export CLANG_WARN_INFINITE_RECURSION\=YES
    export CLANG_WARN_INT_CONVERSION\=YES
    export CLANG_WARN_NON_LITERAL_NULL_CONVERSION\=YES
    export CLANG_WARN_OBJC_IMPLICIT_RETAIN_SELF\=YES
    export CLANG_WARN_OBJC_LITERAL_CONVERSION\=YES
    export CLANG_WARN_OBJC_ROOT_CLASS\=YES_ERROR
    export CLANG_WARN_QUOTED_INCLUDE_IN_FRAMEWORK_HEADER\=NO
    export CLANG_WARN_RANGE_LOOP_ANALYSIS\=YES
    export CLANG_WARN_STRICT_PROTOTYPES\=YES
    export CLANG_WARN_SUSPICIOUS_MOVE\=YES
    export CLANG_WARN_UNREACHABLE_CODE\=YES
    export CLANG_WARN__DUPLICATE_METHOD_MATCH\=YES
    export CLASS_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/JavaClasses
    export CLEAN_PRECOMPS\=YES
    export CLONE_HEADERS\=NO
    export CODESIGNING_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation/Applications/app.app
    export CODE_SIGNING_ALLOWED\=YES
    export CODE_SIGNING_REQUIRED\=YES
    export CODE_SIGN_CONTEXT_CLASS\=XCiPhoneOSCodeSignContext
    export CODE_SIGN_ENTITLEMENTS\=app/app.entitlements
    export CODE_SIGN_IDENTITY\=iPhone\ Developer
    export CODE_SIGN_INJECT_BASE_ENTITLEMENTS\=YES
    export COLOR_DIAGNOSTICS\=NO
    export COMBINE_HIDPI_IMAGES\=NO
    export COMPILER_INDEX_STORE_ENABLE\=Default
    export COMPOSITE_SDK_DIRS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/CompositeSDKs
    export COMPRESS_PNG_FILES\=YES
    export CONFIGURATION\=Release
    export CONFIGURATION_BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos
    export CONFIGURATION_TEMP_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos
    export CONTENTS_FOLDER_PATH\=app.app
    export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_NO\=app.app/Contents
    export CONTENTS_FOLDER_PATH_SHALLOW_BUNDLE_YES\=app.app
    export COPYING_PRESERVES_HFS_DATA\=NO
    export COPY_HEADERS_RUN_UNIFDEF\=NO
    export COPY_PHASE_STRIP\=YES
    export CORRESPONDING_SIMULATOR_PLATFORM_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform
    export CORRESPONDING_SIMULATOR_PLATFORM_NAME\=iphonesimulator
    export CORRESPONDING_SIMULATOR_SDK_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator17.0.sdk
    export CORRESPONDING_SIMULATOR_SDK_NAME\=iphonesimulator17.0
    export CP\=/bin/cp
    export CREATE_INFOPLIST_SECTION_IN_BINARY\=NO
    export CURRENT_ARCH\=undefined_arch
    export CURRENT_PROJECT_VERSION\=1
    export CURRENT_VARIANT\=normal
    export DEAD_CODE_STRIPPING\=YES
    export DEBUGGING_SYMBOLS\=YES
    export DEBUG_INFORMATION_FORMAT\=dwarf-with-dsym
    export DEFAULT_COMPILER\=com.apple.compilers.llvm.clang.1_0
    export DEFAULT_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
    export DEFAULT_KEXT_INSTALL_PATH\=/System/Library/Extensions
    export DEFINES_MODULE\=NO
    export DEPLOYMENT_LOCATION\=YES
    export DEPLOYMENT_POSTPROCESSING\=YES
    export DEPLOYMENT_TARGET_SETTING_NAME\=IPHONEOS_DEPLOYMENT_TARGET
    export DEPLOYMENT_TARGET_SUGGESTED_VALUES\=12.0\ 12.1\ 12.2\ 12.3\ 12.4\ 13.0\ 13.1\ 13.2\ 13.3\ 13.4\ 13.5\ 13.6\ 14.0\ 14.1\ 14.2\ 14.3\ 14.4\ 14.5\ 14.6\ 14.7\ 15.0\ 15.1\ 15.2\ 15.3\ 15.4\ 15.5\ 15.6\ 16.0\ 16.1\ 16.2\ 16.3\ 16.4\ 16.5\ 16.6\ 17.0
    export DERIVED_FILES_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/DerivedSources
    export DERIVED_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/DerivedSources
    export DERIVED_SOURCES_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/DerivedSources
    export DERIVE_MACCATALYST_PRODUCT_BUNDLE_IDENTIFIER\=NO
    export DEVELOPER_APPLICATIONS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications
    export DEVELOPER_BIN_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr/bin
    export DEVELOPER_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer
    export DEVELOPER_FRAMEWORKS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_FRAMEWORKS_DIR_QUOTED\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library/Frameworks
    export DEVELOPER_LIBRARY_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library
    export DEVELOPER_SDK_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/MacOSX.platform/Developer/SDKs
    export DEVELOPER_TOOLS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Tools
    export DEVELOPER_USR_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr
    export DEVELOPMENT_LANGUAGE\=en
    export DEVELOPMENT_TEAM\=VJXUVXS85R
    export DIFF\=/usr/bin/diff
    export DOCUMENTATION_FOLDER_PATH\=app.app/en.lproj/Documentation
    export DONT_GENERATE_INFOPLIST_FILE\=NO
    export DO_HEADER_SCANNING_IN_JAM\=NO
    export DSTROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation
    export DT_TOOLCHAIN_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export DWARF_DSYM_FILE_NAME\=app.app.dSYM
    export DWARF_DSYM_FILE_SHOULD_ACCOMPANY_PRODUCT\=NO
    export DWARF_DSYM_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos
    export DYNAMIC_LIBRARY_EXTENSION\=dylib
    export EAGER_LINKING\=NO
    export EFFECTIVE_PLATFORM_NAME\=-iphoneos
    export EMBEDDED_CONTENT_CONTAINS_SWIFT\=NO
    export EMBEDDED_PROFILE_NAME\=embedded.mobileprovision
    export EMBED_ASSET_PACKS_IN_PRODUCT_BUNDLE\=NO
    export ENABLE_APP_SANDBOX\=NO
    export ENABLE_BITCODE\=NO
    export ENABLE_CODE_COVERAGE\=YES
    export ENABLE_DEFAULT_HEADER_SEARCH_PATHS\=YES
    export ENABLE_DEFAULT_SEARCH_PATHS\=YES
    export ENABLE_HARDENED_RUNTIME\=NO
    export ENABLE_HEADER_DEPENDENCIES\=YES
    export ENABLE_NS_ASSERTIONS\=NO
    export ENABLE_ON_DEMAND_RESOURCES\=YES
    export ENABLE_PREVIEWS\=NO
    export ENABLE_SIGNATURE_AGGREGATION\=YES
    export ENABLE_STRICT_OBJC_MSGSEND\=YES
    export ENABLE_TESTABILITY\=NO
    export ENABLE_TESTING_SEARCH_PATHS\=NO
    export ENABLE_USER_SCRIPT_SANDBOXING\=NO
    export ENABLE_XOJIT_PREVIEWS\=NO
    export ENTITLEMENTS_ALLOWED\=YES
    export ENTITLEMENTS_DESTINATION\=Signature
    export ENTITLEMENTS_REQUIRED\=NO
    export EXCLUDED_INSTALLSRC_SUBDIRECTORY_PATTERNS\=.DS_Store\ .svn\ .git\ .hg\ CVS
    export EXCLUDED_RECURSIVE_SEARCH_PATH_SUBDIRECTORIES\=\*.nib\ \*.lproj\ \*.framework\ \*.gch\ \*.xcode\*\ \*.xcassets\ \(\*\)\ .DS_Store\ CVS\ .svn\ .git\ .hg\ \*.pbproj\ \*.pbxproj
    export EXECUTABLES_FOLDER_PATH\=app.app/Executables
    export EXECUTABLE_FOLDER_PATH\=app.app
    export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_NO\=app.app/MacOS
    export EXECUTABLE_FOLDER_PATH_SHALLOW_BUNDLE_YES\=app.app
    export EXECUTABLE_NAME\=app
    export EXECUTABLE_PATH\=app.app/app
    export EXPANDED_CODE_SIGN_IDENTITY\=D694B522D29A65EA9744B7025A5A6C15A8175E5F
    export EXPANDED_CODE_SIGN_IDENTITY_NAME\=Apple\ Development:\ Daniel\ Tovesson\ \(QSQ37946P4\)
    export EXPANDED_PROVISIONING_PROFILE\=f00db131-b4b1-4dc2-8824-5a0f16510d3a
    export EXTENSIONS_FOLDER_PATH\=app.app/Extensions
    export FILE_LIST\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects/LinkFileList
    export FIREBASE_ENCODED_APP_ID\=app-1-860483334660-ios-c27fd7137d41329f65bb51
    export FIXED_FILES_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/FixedFiles
    export FRAMEWORKS_FOLDER_PATH\=app.app/Frameworks
    export FRAMEWORK_FLAG_PREFIX\=-framework
    export FRAMEWORK_SEARCH_PATHS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos\ \ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/DoubleConversion\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAppCheckInterop\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAuth\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAuthInterop\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCore\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCoreExtension\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCoreInternal\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCrashlytics\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseFunctions\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseInstallations\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseMessagingInterop\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseSessions\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseSharedSwift\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GTMSessionFetcher\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Google-Maps-iOS-Utils\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GoogleDataTransport\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GoogleUtilities\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Mixpanel-swift\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/MixpanelReactNative\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/NWWebSocket\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PromisesObjC\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PromisesSwift\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PusherSwift\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RCT-Folly\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RCTTypeSafety\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNCAsyncStorage\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNCPicker\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNDeviceInfo\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBApp\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBAuth\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBCrashlytics\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBFunctions\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFastImage\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNGestureHandler\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNInstabug\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNReanimated\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNSVG\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNScreens\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-Codegen\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-Core\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-CoreModules\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-NativeModulesApple\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTAnimation\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTAppDelegate\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTBlob\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTImage\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTLinking\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTNetwork\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTSettings\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTText\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTVibration\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-cxxreact\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-debug\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-hermes\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsi\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsiexecutor\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsinspector\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-logger\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-perflogger\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-runtimescheduler\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-utils\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RecaptchaInterop\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SDWebImage\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SDWebImageWebPCoder\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SocketRocket\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/TweetNacl\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Yoga\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/fmt\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/glog\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/libevent\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/libwebp\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/nanopb\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/pusher-websocket-react-native\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-config\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-date-picker\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-google-maps\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-maps\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-safe-area-context\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-slider\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-webview\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/GoogleMaps/Base/Frameworks\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/GoogleMaps/Maps/Frameworks\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Instabug\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/hermes-engine/destroot/Library/Frameworks/universal\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/XCFrameworkIntermediates/GoogleMaps/Base\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/XCFrameworkIntermediates/GoogleMaps/Maps\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/XCFrameworkIntermediates/Instabug\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/XCFrameworkIntermediates/hermes-engine/Pre-built\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Instabug/\"
    export FRAMEWORK_VERSION\=A
    export FULL_PRODUCT_NAME\=app.app
    export FUSE_BUILD_PHASES\=YES
    export FUSE_BUILD_SCRIPT_PHASES\=NO
    export GCC3_VERSION\=3.3
    export GCC_C_LANGUAGE_STANDARD\=gnu99
    export GCC_DYNAMIC_NO_PIC\=NO
    export GCC_INLINES_ARE_PRIVATE_EXTERN\=YES
    export GCC_NO_COMMON_BLOCKS\=YES
    export GCC_PFE_FILE_C_DIALECTS\=c\ objective-c\ c++\ objective-c++
    export GCC_PREPROCESSOR_DEFINITIONS\=\ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION\ COCOAPODS\=1\ \ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION\ SD_WEBP\=1\ \ _LIBCPP_ENABLE_CXX17_REMOVED_UNARY_BINARY_FUNCTION\ PB_FIELD_32BIT\=1\ PB_NO_PACKED_STRUCTS\=1\ PB_ENABLE_MALLOC\=1
    export GCC_SYMBOLS_PRIVATE_EXTERN\=YES
    export GCC_THUMB_SUPPORT\=YES
    export GCC_TREAT_WARNINGS_AS_ERRORS\=NO
    export GCC_VERSION\=com.apple.compilers.llvm.clang.1_0
    export GCC_VERSION_IDENTIFIER\=com_apple_compilers_llvm_clang_1_0
    export GCC_WARN_64_TO_32_BIT_CONVERSION\=YES
    export GCC_WARN_ABOUT_RETURN_TYPE\=YES_ERROR
    export GCC_WARN_UNDECLARED_SELECTOR\=YES
    export GCC_WARN_UNINITIALIZED_AUTOS\=YES_AGGRESSIVE
    export GCC_WARN_UNUSED_FUNCTION\=YES
    export GCC_WARN_UNUSED_VARIABLE\=YES
    export GENERATED_MODULEMAP_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/GeneratedModuleMaps-iphoneos
    export GENERATE_INFOPLIST_FILE\=NO
    export GENERATE_INTERMEDIATE_TEXT_BASED_STUBS\=YES
    export GENERATE_MASTER_OBJECT_FILE\=NO
    export GENERATE_PKGINFO_FILE\=YES
    export GENERATE_PROFILING_CODE\=NO
    export GENERATE_TEXT_BASED_STUBS\=NO
    export GID\=20
    export GROUP\=staff
    export HEADERMAP_INCLUDES_FLAT_ENTRIES_FOR_TARGET_BEING_BUILT\=YES
    export HEADERMAP_INCLUDES_FRAMEWORK_ENTRIES_FOR_ALL_PRODUCT_TYPES\=YES
    export HEADERMAP_INCLUDES_NONPUBLIC_NONPRIVATE_HEADERS\=YES
    export HEADERMAP_INCLUDES_PROJECT_HEADERS\=YES
    export HEADERMAP_USES_FRAMEWORK_PREFIX_ENTRIES\=YES
    export HEADERMAP_USES_VFS\=NO
    export HEADER_SEARCH_PATHS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/include\ \ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon-Samples/ReactCommon_Samples.framework/Headers\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-NativeModulesApple/React_NativeModulesApple.framework/Headers\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/DoubleConversion/DoubleConversion.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAppCheckInterop/FirebaseAppCheckInterop.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAuth/FirebaseAuth.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseAuthInterop/FirebaseAuthInterop.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCore/FirebaseCore.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCoreExtension/FirebaseCoreExtension.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCoreInternal/FirebaseCoreInternal.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseCrashlytics/FirebaseCrashlytics.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseFunctions/FirebaseFunctions.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseInstallations/FirebaseInstallations.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseMessagingInterop/FirebaseMessagingInterop.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseSessions/FirebaseSessions.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/FirebaseSharedSwift/FirebaseSharedSwift.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GTMSessionFetcher/GTMSessionFetcher.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Google-Maps-iOS-Utils/GoogleMapsUtils.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GoogleDataTransport/GoogleDataTransport.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/GoogleUtilities/GoogleUtilities.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Mixpanel-swift/Mixpanel.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/MixpanelReactNative/MixpanelReactNative.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/NWWebSocket/NWWebSocket.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PromisesObjC/FBLPromises.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PromisesSwift/Promises.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/PusherSwift/PusherSwift.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RCT-Folly/folly.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RCTTypeSafety/RCTTypeSafety.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNCAsyncStorage/RNCAsyncStorage.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNCPicker/RNCPicker.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNDeviceInfo/RNDeviceInfo.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBApp/RNFBApp.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBAuth/RNFBAuth.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBCrashlytics/RNFBCrashlytics.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFBFunctions/RNFBFunctions.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNFastImage/RNFastImage.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNGestureHandler/RNGestureHandler.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNInstabug/RNInstabug.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNReanimated/RNReanimated.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNSVG/RNSVG.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RNScreens/RNScreens.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-Codegen/React_Codegen.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-Core/React.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-CoreModules/CoreModules.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-NativeModulesApple/React_NativeModulesApple.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTAnimation/RCTAnimation.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTAppDelegate/React_RCTAppDelegate.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTBlob/RCTBlob.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTImage/RCTImage.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTLinking/RCTLinking.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTNetwork/RCTNetwork.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTSettings/RCTSettings.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTText/RCTText.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-RCTVibration/RCTVibration.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-cxxreact/cxxreact.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-debug/React_debug.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-hermes/reacthermes.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsi/jsi.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsiexecutor/jsireact.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-jsinspector/jsinspector.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-logger/logger.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-perflogger/reactperflogger.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-runtimescheduler/React_runtimescheduler.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-utils/React_utils.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon/ReactCommon.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/RecaptchaInterop/RecaptchaInterop.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SDWebImage/SDWebImage.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SDWebImageWebPCoder/SDWebImageWebPCoder.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/SocketRocket/SocketRocket.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/TweetNacl/TweetNacl.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/Yoga/yoga.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/fmt/fmt.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/glog/glog.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/libevent/libevent.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/libwebp/libwebp.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/nanopb/nanopb.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/pusher-websocket-react-native/pusher_websocket_react_native.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-config/react_native_config.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-date-picker/react_native_date_picker.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-google-maps/react_native_google_maps.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-maps/react_native_maps.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-safe-area-context/react_native_safe_area_context.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-slider/react_native_slider.framework/Headers\"\ \"/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/react-native-webview/react_native_webview.framework/Headers\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/FBLazyVector\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/Firebase\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/RCTRequired\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/React-callinvoker\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/React-runtimeexecutor\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/hermes-engine\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/DoubleConversion\"\ \ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon-Samples/ReactCommon_Samples.framework/Headers\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon/ReactCommon.framework/Headers/react/nativemodule/core\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/ReactCommon-Samples/ReactCommon_Samples.framework/Headers/platform/ios\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-NativeModulesApple/React_NativeModulesApple.framework/Headers\ /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/React-graphics/React_graphics.framework/Headers/react/renderer/graphics/platform/ios\ /Users/danielwork/git/peak-energy/app/ios/Pods/Firebase/CoreOnly/Sources\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/boost\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/boost\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/boost-for-react-native\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/glog\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/RCT-Folly\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/React-hermes\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Public/hermes-engine\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/../../node_modules/react-native/ReactCommon\"\ \"/Users/danielwork/git/peak-energy/app/ios/Pods/Headers/Private/React-Core\"\ \"/include/\"
    export HIDE_BITCODE_SYMBOLS\=YES
    export HOME\=/Users/danielwork
    export HOST_ARCH\=arm64
    export HOST_PLATFORM\=macosx
    export ICONV\=/usr/bin/iconv
    export INDEX_ENABLE_DATA_STORE\=NO
    export INFOPLIST_ENABLE_CFBUNDLEICONS_MERGE\=YES
    export INFOPLIST_EXPAND_BUILD_SETTINGS\=YES
    export INFOPLIST_FILE\=app/Info.plist
    export INFOPLIST_OUTPUT_FORMAT\=binary
    export INFOPLIST_PATH\=app.app/Info.plist
    export INFOPLIST_PREPROCESS\=NO
    export INFOSTRINGS_PATH\=app.app/en.lproj/InfoPlist.strings
    export INLINE_PRIVATE_FRAMEWORKS\=NO
    export INSTALLHDRS_COPY_PHASE\=NO
    export INSTALLHDRS_SCRIPT_PHASE\=NO
    export INSTALL_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation/Applications
    export INSTALL_GROUP\=staff
    export INSTALL_MODE_FLAG\=u+w,go-w,a+rX
    export INSTALL_OWNER\=danielwork
    export INSTALL_PATH\=/Applications
    export INSTALL_ROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation
    export IPHONEOS_DEPLOYMENT_TARGET\=13.0
    export IS_UNOPTIMIZED_BUILD\=NO
    export JAVAC_DEFAULT_FLAGS\=-J-Xms64m\ -J-XX:NewSize\=4M\ -J-Dfile.encoding\=UTF8
    export JAVA_APP_STUB\=/System/Library/Frameworks/JavaVM.framework/Resources/MacOS/JavaApplicationStub
    export JAVA_ARCHIVE_CLASSES\=YES
    export JAVA_ARCHIVE_TYPE\=JAR
    export JAVA_COMPILER\=/usr/bin/javac
    export JAVA_FOLDER_PATH\=app.app/Java
    export JAVA_FRAMEWORK_RESOURCES_DIRS\=Resources
    export JAVA_JAR_FLAGS\=cv
    export JAVA_SOURCE_SUBDIR\=.
    export JAVA_USE_DEPENDENCIES\=YES
    export JAVA_ZIP_FLAGS\=-urg
    export JIKES_DEFAULT_FLAGS\=+E\ +OLDCSO
    export KASAN_CFLAGS_CLASSIC\=-DKASAN\=1\ -DKASAN_CLASSIC\=1\ -fsanitize\=address\ -mllvm\ -asan-globals-live-support\ -mllvm\ -asan-force-dynamic-shadow
    export KASAN_CFLAGS_TBI\=-DKASAN\=1\ -DKASAN_TBI\=1\ -fsanitize\=kernel-hwaddress\ -mllvm\ -hwasan-recover\=0\ -mllvm\ -hwasan-instrument-atomics\=0\ -mllvm\ -hwasan-instrument-stack\=1\ -mllvm\ -hwasan-generate-tags-with-calls\=1\ -mllvm\ -hwasan-instrument-with-calls\=1\ -mllvm\ -hwasan-use-short-granules\=0\ -mllvm\ -hwasan-memory-access-callback-prefix\=__asan_
    export KASAN_DEFAULT_CFLAGS\=-DKASAN\=1\ -DKASAN_CLASSIC\=1\ -fsanitize\=address\ -mllvm\ -asan-globals-live-support\ -mllvm\ -asan-force-dynamic-shadow
    export KEEP_PRIVATE_EXTERNS\=NO
    export LD_DEPENDENCY_INFO_FILE\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal/undefined_arch/app_dependency_info.dat
    export LD_EXPORT_SYMBOLS\=YES
    export LD_GENERATE_MAP_FILE\=NO
    export LD_MAP_FILE_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/app-LinkMap-normal-undefined_arch.txt
    export LD_NO_PIE\=NO
    export LD_QUOTE_LINKER_ARGUMENTS_FOR_COMPILER_DRIVER\=YES
    export LD_RUNPATH_SEARCH_PATHS\=/usr/lib/swift\ \ /usr/lib/swift\ \'@executable_path/Frameworks\'\ \'@loader_path/Frameworks\'\ @executable_path/Frameworks
    export LD_RUNPATH_SEARCH_PATHS_YES\=@loader_path/../Frameworks
    export LEGACY_DEVELOPER_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/PlugIns/Xcode3Core.ideplugin/Contents/SharedSupport/Developer
    export LEX\=lex
    export LIBRARY_DEXT_INSTALL_PATH\=/Library/DriverExtensions
    export LIBRARY_FLAG_NOSPACE\=YES
    export LIBRARY_FLAG_PREFIX\=-l
    export LIBRARY_KEXT_INSTALL_PATH\=/Library/Extensions
    export LIBRARY_SEARCH_PATHS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk/usr/lib/swift\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/lib/swift/iphoneos\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk/usr/lib/swift
    export LINKER_DISPLAYS_MANGLED_NAMES\=NO
    export LINK_FILE_LIST_normal_arm64\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal/arm64/app.LinkFileList
    export LINK_OBJC_RUNTIME\=YES
    export LINK_WITH_STANDARD_LIBRARIES\=YES
    export LLVM_TARGET_TRIPLE_OS_VERSION\=ios13.0
    export LLVM_TARGET_TRIPLE_VENDOR\=apple
    export LOCALIZATION_EXPORT_SUPPORTED\=YES
    export LOCALIZATION_PREFERS_STRING_CATALOGS\=NO
    export LOCALIZED_RESOURCES_FOLDER_PATH\=app.app/en.lproj
    export LOCALIZED_STRING_MACRO_NAMES\=NSLocalizedString\ CFCopyLocalizedString
    export LOCALIZED_STRING_SWIFTUI_SUPPORT\=YES
    export LOCAL_ADMIN_APPS_DIR\=/Applications/Utilities
    export LOCAL_APPS_DIR\=/Applications
    export LOCAL_DEVELOPER_DIR\=/Library/Developer
    export LOCAL_LIBRARY_DIR\=/Library
    export LOCROOT\=/Users/danielwork/git/peak-energy/app/ios
    export LOCSYMROOT\=/Users/danielwork/git/peak-energy/app/ios
    export MACH_O_TYPE\=mh_execute
    export MAC_OS_X_PRODUCT_BUILD_VERSION\=23A344
    export MAC_OS_X_VERSION_ACTUAL\=140000
    export MAC_OS_X_VERSION_MAJOR\=140000
    export MAC_OS_X_VERSION_MINOR\=140000
    export MAKE_MERGEABLE\=NO
    export MARKETING_VERSION\=1.0
    export MERGEABLE_LIBRARY\=NO
    export MERGED_BINARY_TYPE\=none
    export MERGE_LINKED_LIBRARIES\=NO
    export MESSAGES_APPLICATION_EXTENSION_SUPPORT_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/MessagesApplicationExtensionSupport
    export MESSAGES_APPLICATION_SUPPORT_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/MessagesApplicationSupport
    export METAL_LIBRARY_FILE_BASE\=default
    export METAL_LIBRARY_OUTPUT_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation/Applications/app.app
    export MODULES_FOLDER_PATH\=app.app/Modules
    export MODULE_CACHE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/ModuleCache.noindex
    export MTL_ENABLE_DEBUG_INFO\=NO
    export NATIVE_ARCH\=arm64
    export NATIVE_ARCH_32_BIT\=arm
    export NATIVE_ARCH_64_BIT\=arm64
    export NATIVE_ARCH_ACTUAL\=arm64
    export NO_COMMON\=YES
    export OBJECT_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects
    export OBJECT_FILE_DIR_normal\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal
    export OBJROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath
    export ONLY_ACTIVE_ARCH\=NO
    export OS\=MACOS
    export OSAC\=/usr/bin/osacompile
    export OTHER_CFLAGS\=\ -DFOLLY_NO_CONFIG\ -DFOLLY_MOBILE\=1\ -DFOLLY_USE_LIBCPP\=1\ -Wno-comma\ -Wno-shorten-64-to-32\ -DREACT_NATIVE_MINOR_VERSION\=72\ \ \ -DREANIMATED_VERSION\=3.5.4
    export OTHER_CPLUSPLUSFLAGS\=\ -DFOLLY_NO_CONFIG\ -DFOLLY_MOBILE\=1\ -DFOLLY_USE_LIBCPP\=1\ -Wno-comma\ -Wno-shorten-64-to-32\ -DREACT_NATIVE_MINOR_VERSION\=72\ \ \ -DREANIMATED_VERSION\=3.5.4\ -DFOLLY_NO_CONFIG\ -DFOLLY_MOBILE\=1\ -DFOLLY_USE_LIBCPP\=1
    export OTHER_LDFLAGS\=\ -Wl\ -ld_classic\ -ObjC\ -l\"c++\"\ -l\"c++abi\"\ -l\"icucore\"\ -l\"z\"\ -framework\ \"Accelerate\"\ -framework\ \"AudioToolbox\"\ -framework\ \"CFNetwork\"\ -framework\ \"CoreData\"\ -framework\ \"CoreGraphics\"\ -framework\ \"CoreImage\"\ -framework\ \"CoreLocation\"\ -framework\ \"CoreModules\"\ -framework\ \"CoreTelephony\"\ -framework\ \"CoreText\"\ -framework\ \"DoubleConversion\"\ -framework\ \"FBLPromises\"\ -framework\ \"FirebaseAppCheckInterop\"\ -framework\ \"FirebaseAuth\"\ -framework\ \"FirebaseAuthInterop\"\ -framework\ \"FirebaseCore\"\ -framework\ \"FirebaseCoreExtension\"\ -framework\ \"FirebaseCoreInternal\"\ -framework\ \"FirebaseCrashlytics\"\ -framework\ \"FirebaseFunctions\"\ -framework\ \"FirebaseInstallations\"\ -framework\ \"FirebaseMessagingInterop\"\ -framework\ \"FirebaseSessions\"\ -framework\ \"FirebaseSharedSwift\"\ -framework\ \"Foundation\"\ -framework\ \"GLKit\"\ -framework\ \"GTMSessionFetcher\"\ -framework\ \"GoogleDataTransport\"\ -framework\ \"GoogleMaps\"\ -framework\ \"GoogleMapsBase\"\ -framework\ \"GoogleMapsCore\"\ -framework\ \"GoogleMapsUtils\"\ -framework\ \"GoogleUtilities\"\ -framework\ \"ImageIO\"\ -framework\ \"Instabug\"\ -framework\ \"JavaScriptCore\"\ -framework\ \"Metal\"\ -framework\ \"Mixpanel\"\ -framework\ \"MixpanelReactNative\"\ -framework\ \"MobileCoreServices\"\ -framework\ \"NWWebSocket\"\ -framework\ \"Network\"\ -framework\ \"OpenGLES\"\ -framework\ \"Promises\"\ -framework\ \"PusherSwift\"\ -framework\ \"QuartzCore\"\ -framework\ \"RCTAnimation\"\ -framework\ \"RCTBlob\"\ -framework\ \"RCTImage\"\ -framework\ \"RCTLinking\"\ -framework\ \"RCTNetwork\"\ -framework\ \"RCTSettings\"\ -framework\ \"RCTText\"\ -framework\ \"RCTTypeSafety\"\ -framework\ \"RCTVibration\"\ -framework\ \"RNCAsyncStorage\"\ -framework\ \"RNCPicker\"\ -framework\ \"RNDeviceInfo\"\ -framework\ \"RNFBApp\"\ -framework\ \"RNFBAuth\"\ -framework\ \"RNFBCrashlytics\"\ -framework\ \"RNFBFunctions\"\ -framework\ \"RNFastImage\"\ -framework\ \"RNGestureHandler\"\ -framework\ \"RNInstabug\"\ -framework\ \"RNReanimated\"\ -framework\ \"RNSVG\"\ -framework\ \"RNScreens\"\ -framework\ \"React\"\ -framework\ \"ReactCommon\"\ -framework\ \"React_Codegen\"\ -framework\ \"React_NativeModulesApple\"\ -framework\ \"React_RCTAppDelegate\"\ -framework\ \"React_debug\"\ -framework\ \"React_runtimescheduler\"\ -framework\ \"React_utils\"\ -framework\ \"RecaptchaInterop\"\ -framework\ \"SDWebImage\"\ -framework\ \"SDWebImageWebPCoder\"\ -framework\ \"SafariServices\"\ -framework\ \"Security\"\ -framework\ \"SocketRocket\"\ -framework\ \"SystemConfiguration\"\ -framework\ \"TweetNacl\"\ -framework\ \"UIKit\"\ -framework\ \"cxxreact\"\ -framework\ \"fmt\"\ -framework\ \"folly\"\ -framework\ \"glog\"\ -framework\ \"hermes\"\ -framework\ \"jsi\"\ -framework\ \"jsinspector\"\ -framework\ \"jsireact\"\ -framework\ \"libevent\"\ -framework\ \"libwebp\"\ -framework\ \"logger\"\ -framework\ \"nanopb\"\ -framework\ \"pusher_websocket_react_native\"\ -framework\ \"react_native_config\"\ -framework\ \"react_native_date_picker\"\ -framework\ \"react_native_google_maps\"\ -framework\ \"react_native_maps\"\ -framework\ \"react_native_safe_area_context\"\ -framework\ \"react_native_slider\"\ -framework\ \"react_native_webview\"\ -framework\ \"reacthermes\"\ -framework\ \"reactperflogger\"\ -framework\ \"yoga\"\ -ObjC\ -lc++
    export OTHER_SWIFT_FLAGS\=\ -D\ COCOAPODS
    export PACKAGE_TYPE\=com.apple.package-type.wrapper.application
    export PASCAL_STRINGS\=YES
    export PATH\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin/Contents/Resources:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library/Xcode/Plug-ins/XCBSpecifications.ideplugin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/appleinternal/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/local/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain/usr/libexec:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/appleinternal/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/usr/local/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/local/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr/bin:/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr/local/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
    export PATH_PREFIXES_EXCLUDED_FROM_HEADER_DEPENDENCIES\=/usr/include\ /usr/local/include\ /System/Library/Frameworks\ /System/Library/PrivateFrameworks\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Headers\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/SDKs\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms
    export PBDEVELOPMENTPLIST_PATH\=app.app/pbdevelopment.plist
    export PER_ARCH_OBJECT_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal/undefined_arch
    export PER_VARIANT_OBJECT_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal
    export PKGINFO_FILE_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/PkgInfo
    export PKGINFO_PATH\=app.app/PkgInfo
    export PLATFORM_DEVELOPER_APPLICATIONS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Applications
    export PLATFORM_DEVELOPER_BIN_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/bin
    export PLATFORM_DEVELOPER_LIBRARY_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library
    export PLATFORM_DEVELOPER_SDK_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs
    export PLATFORM_DEVELOPER_TOOLS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Tools
    export PLATFORM_DEVELOPER_USR_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr
    export PLATFORM_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform
    export PLATFORM_DISPLAY_NAME\=iOS
    export PLATFORM_FAMILY_NAME\=iOS
    export PLATFORM_NAME\=iphoneos
    export PLATFORM_PREFERRED_ARCH\=arm64
    export PLATFORM_PRODUCT_BUILD_VERSION\=21A325
    export PLIST_FILE_OUTPUT_FORMAT\=binary
    export PLUGINS_FOLDER_PATH\=app.app/PlugIns
    export PODS_BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath
    export PODS_CONFIGURATION_BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos
    export PODS_PODFILE_DIR_PATH\=/Users/danielwork/git/peak-energy/app/ios/.
    export PODS_ROOT\=/Users/danielwork/git/peak-energy/app/ios/Pods
    export PODS_XCFRAMEWORKS_BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/XCFrameworkIntermediates
    export PRECOMPS_INCLUDE_HEADERS_FROM_BUILT_PRODUCTS_DIR\=YES
    export PRECOMP_DESTINATION_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/PrefixHeaders
    export PRESERVE_DEAD_CODE_INITS_AND_TERMS\=NO
    export PRIVATE_HEADERS_FOLDER_PATH\=app.app/PrivateHeaders
    export PRODUCT_BUNDLE_IDENTIFIER\=se.peakenergy.peakenergy
    export PRODUCT_BUNDLE_PACKAGE_TYPE\=APPL
    export PRODUCT_MODULE_NAME\=app
    export PRODUCT_NAME\=app
    export PRODUCT_SETTINGS_PATH\=/Users/danielwork/git/peak-energy/app/ios/app/Info.plist
    export PRODUCT_TYPE\=com.apple.product-type.application
    export PROFILING_CODE\=NO
    export PROJECT\=app
    export PROJECT_DERIVED_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/DerivedSources
    export PROJECT_DIR\=/Users/danielwork/git/peak-energy/app/ios
    export PROJECT_FILE_PATH\=/Users/danielwork/git/peak-energy/app/ios/app.xcodeproj
    export PROJECT_NAME\=app
    export PROJECT_TEMP_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build
    export PROJECT_TEMP_ROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath
    export PROVISIONING_PROFILE_REQUIRED\=YES
    export PROVISIONING_PROFILE_REQUIRED_YES_YES\=YES
    export PROVISIONING_PROFILE_SUPPORTED\=YES
    export PUBLIC_HEADERS_FOLDER_PATH\=app.app/Headers
    export REACT_NATIVE_PATH\=/Users/danielwork/git/peak-energy/app/ios/Pods/../../node_modules/react-native
    export RECOMMENDED_IPHONEOS_DEPLOYMENT_TARGET\=12.5
    export RECURSIVE_SEARCH_PATHS_FOLLOW_SYMLINKS\=YES
    export REMOVE_CVS_FROM_RESOURCES\=YES
    export REMOVE_GIT_FROM_RESOURCES\=YES
    export REMOVE_HEADERS_FROM_EMBEDDED_BUNDLES\=YES
    export REMOVE_HG_FROM_RESOURCES\=YES
    export REMOVE_STATIC_EXECUTABLES_FROM_EMBEDDED_BUNDLES\=YES
    export REMOVE_SVN_FROM_RESOURCES\=YES
    export REZ_COLLECTOR_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/ResourceManagerResources
    export REZ_OBJECTS_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/ResourceManagerResources/Objects
    export REZ_SEARCH_PATHS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos\ 
    export SCAN_ALL_SOURCE_FILES_FOR_INCLUDES\=NO
    export SCRIPTS_FOLDER_PATH\=app.app/Scripts
    export SCRIPT_INPUT_FILE_COUNT\=0
    export SCRIPT_INPUT_FILE_LIST_COUNT\=0
    export SCRIPT_OUTPUT_FILE_COUNT\=0
    export SCRIPT_OUTPUT_FILE_LIST_COUNT\=0
    export SDKROOT\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk
    export SDK_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk
    export SDK_DIR_iphoneos\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk
    export SDK_DIR_iphoneos17_0\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk
    export SDK_NAME\=iphoneos17.0
    export SDK_NAMES\=iphoneos17.0
    export SDK_PRODUCT_BUILD_VERSION\=21A325
    export SDK_STAT_CACHE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData
    export SDK_STAT_CACHE_ENABLE\=YES
    export SDK_STAT_CACHE_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/SDKStatCaches.noindex/iphoneos17.0-21A325-b3a8d835e12cd27ebb91bd4fbafcd8ec.sdkstatcache
    export SDK_VERSION\=17.0
    export SDK_VERSION_ACTUAL\=170000
    export SDK_VERSION_MAJOR\=170000
    export SDK_VERSION_MINOR\=170000
    export SED\=/usr/bin/sed
    export SEPARATE_STRIP\=NO
    export SEPARATE_SYMBOL_EDIT\=NO
    export SET_DIR_MODE_OWNER_GROUP\=YES
    export SET_FILE_MODE_OWNER_GROUP\=NO
    export SHALLOW_BUNDLE\=YES
    export SHALLOW_BUNDLE_TRIPLE\=ios
    export SHALLOW_BUNDLE_ios_macabi\=NO
    export SHALLOW_BUNDLE_macos\=NO
    export SHARED_DERIVED_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos/DerivedSources
    export SHARED_FRAMEWORKS_FOLDER_PATH\=app.app/SharedFrameworks
    export SHARED_PRECOMPS_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/PrecompiledHeaders
    export SHARED_SUPPORT_FOLDER_PATH\=app.app/SharedSupport
    export SIGNATURE_METADATA_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Signatures
    export SKIP_INSTALL\=NO
    export SOURCE_ROOT\=/Users/danielwork/git/peak-energy/app/ios
    export SRCROOT\=/Users/danielwork/git/peak-energy/app/ios
    export STRINGSDATA_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal/undefined_arch
    export STRINGSDATA_ROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build
    export STRINGS_FILE_INFOPLIST_RENAME\=YES
    export STRINGS_FILE_OUTPUT_ENCODING\=binary
    export STRIP_BITCODE_FROM_COPIED_FILES\=YES
    export STRIP_INSTALLED_PRODUCT\=YES
    export STRIP_STYLE\=all
    export STRIP_SWIFT_SYMBOLS\=YES
    export SUPPORTED_DEVICE_FAMILIES\=1,2
    export SUPPORTED_PLATFORMS\=iphoneos\ iphonesimulator
    export SUPPORTS_MACCATALYST\=NO
    export SUPPORTS_MAC_DESIGNED_FOR_IPHONE_IPAD\=YES
    export SUPPORTS_ON_DEMAND_RESOURCES\=YES
    export SUPPORTS_TEXT_BASED_API\=NO
    export SUPPORTS_XR_DESIGNED_FOR_IPHONE_IPAD\=YES
    export SWIFT_EMIT_LOC_STRINGS\=NO
    export SWIFT_INCLUDE_PATHS\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/Release-iphoneos\ \ /Users/danielwork/git/peak-energy/app/ios/Pods/TweetNacl/Sources
    export SWIFT_PLATFORM_TARGET_PREFIX\=ios
    export SWIFT_RESPONSE_FILE_PATH_normal_arm64\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Objects-normal/arm64/app.SwiftFileList
    export SWIFT_STDLIB_TOOL_UNSIGNED_DESTINATION_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/SwiftSupport
    export SWIFT_VERSION\=5.0
    export SYMROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath
    export SYSTEM_ADMIN_APPS_DIR\=/Applications/Utilities
    export SYSTEM_APPS_DIR\=/Applications
    export SYSTEM_CORE_SERVICES_DIR\=/System/Library/CoreServices
    export SYSTEM_DEMOS_DIR\=/Applications/Extras
    export SYSTEM_DEVELOPER_APPS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications
    export SYSTEM_DEVELOPER_BIN_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr/bin
    export SYSTEM_DEVELOPER_DEMOS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications/Utilities/Built\ Examples
    export SYSTEM_DEVELOPER_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer
    export SYSTEM_DEVELOPER_DOC_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library
    export SYSTEM_DEVELOPER_GRAPHICS_TOOLS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications/Graphics\ Tools
    export SYSTEM_DEVELOPER_JAVA_TOOLS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications/Java\ Tools
    export SYSTEM_DEVELOPER_PERFORMANCE_TOOLS_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications/Performance\ Tools
    export SYSTEM_DEVELOPER_RELEASENOTES_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes
    export SYSTEM_DEVELOPER_TOOLS\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Tools
    export SYSTEM_DEVELOPER_TOOLS_DOC_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/documentation/DeveloperTools
    export SYSTEM_DEVELOPER_TOOLS_RELEASENOTES_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/ADC\ Reference\ Library/releasenotes/DeveloperTools
    export SYSTEM_DEVELOPER_USR_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/usr
    export SYSTEM_DEVELOPER_UTILITIES_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Applications/Utilities
    export SYSTEM_DEXT_INSTALL_PATH\=/System/Library/DriverExtensions
    export SYSTEM_DOCUMENTATION_DIR\=/Library/Documentation
    export SYSTEM_EXTENSIONS_FOLDER_PATH\=app.app/SystemExtensions
    export SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_NO\=app.app/Library/SystemExtensions
    export SYSTEM_EXTENSIONS_FOLDER_PATH_SHALLOW_BUNDLE_YES\=app.app/SystemExtensions
    export SYSTEM_KEXT_INSTALL_PATH\=/System/Library/Extensions
    export SYSTEM_LIBRARY_DIR\=/System/Library
    export TAPI_DEMANGLE\=YES
    export TAPI_ENABLE_PROJECT_HEADERS\=NO
    export TAPI_LANGUAGE\=objective-c
    export TAPI_LANGUAGE_STANDARD\=compiler-default
    export TAPI_USE_SRCROOT\=YES
    export TAPI_VERIFY_MODE\=Pedantic
    export TARGETED_DEVICE_FAMILY\=1
    export TARGETNAME\=app
    export TARGET_BUILD_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/InstallationBuildProductsLocation/Applications
    export TARGET_NAME\=app
    export TARGET_TEMP_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build
    export TEMP_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build
    export TEMP_FILES_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build
    export TEMP_FILE_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build
    export TEMP_ROOT\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath
    export TEST_FRAMEWORK_SEARCH_PATHS\=\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/Library/Frameworks\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/SDKs/iPhoneOS17.0.sdk/Developer/Library/Frameworks
    export TEST_LIBRARY_SEARCH_PATHS\=\ /Users/danielwork/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/lib
    export TOOLCHAINS\=com.apple.dt.toolchain.XcodeDefault
    export TOOLCHAIN_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Toolchains/XcodeDefault.xctoolchain
    export TREAT_MISSING_BASELINES_AS_TEST_FAILURES\=NO
    export TeamIdentifierPrefix\=VJXUVXS85R.
    export UID\=502
    export UNINSTALLED_PRODUCTS_DIR\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/UninstalledProducts
    export UNLOCALIZED_RESOURCES_FOLDER_PATH\=app.app
    export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_NO\=app.app/Resources
    export UNLOCALIZED_RESOURCES_FOLDER_PATH_SHALLOW_BUNDLE_YES\=app.app
    export UNSTRIPPED_PRODUCT\=NO
    export USER\=danielwork
    export USER_APPS_DIR\=/Users/danielwork/Applications
    export USER_HEADER_SEARCH_PATHS\=\ /Users/danielwork/git/peak-energy/app/ios/libwebp/src
    export USER_LIBRARY_DIR\=/Users/danielwork/Library
    export USE_DYNAMIC_NO_PIC\=YES
    export USE_HEADERMAP\=YES
    export USE_HEADER_SYMLINKS\=NO
    export USE_RECURSIVE_SCRIPT_INPUTS_IN_SCRIPT_PHASES\=YES
    export VALIDATE_DEVELOPMENT_ASSET_PATHS\=YES_ERROR
    export VALIDATE_PRODUCT\=YES
    export VALID_ARCHS\=arm64\ arm64e\ armv7\ armv7s
    export VERBOSE_PBXCP\=NO
    export VERSIONING_SYSTEM\=apple-generic
    export VERSIONPLIST_PATH\=app.app/version.plist
    export VERSION_INFO_BUILDER\=danielwork
    export VERSION_INFO_FILE\=app_vers.c
    export VERSION_INFO_STRING\=\"@\(\#\)PROGRAM:app\ \ PROJECT:app-1\"
    export WATCHKIT_2_SUPPORT_FOLDER_PATH\=/Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/BuildProductsPath/WatchKitSupport2
    export WRAPPER_EXTENSION\=app
    export WRAPPER_NAME\=app.app
    export WRAPPER_SUFFIX\=.app
    export WRAP_ASSET_PACKS_IN_SEPARATE_DIRECTORIES\=NO
    export XCODE_APP_SUPPORT_DIR\=/Users/danielwork/Applications/Xcode.app/Contents/Developer/Library/Xcode
    export XCODE_PRODUCT_BUILD_VERSION\=15A240d
    export XCODE_VERSION_ACTUAL\=1500
    export XCODE_VERSION_MAJOR\=1500
    export XCODE_VERSION_MINOR\=1500
    export XPCSERVICES_FOLDER_PATH\=app.app/XPCServices
    export YACC\=yacc
    export _WRAPPER_CONTENTS_DIR_SHALLOW_BUNDLE_NO\=/Contents
    export _WRAPPER_PARENT_PATH_SHALLOW_BUNDLE_NO\=/..
    export _WRAPPER_RESOURCES_DIR_SHALLOW_BUNDLE_NO\=/Resources
    export __IS_NOT_MACOS\=YES
    export __IS_NOT_MACOS_macosx\=NO
    export __IS_NOT_SIMULATOR\=YES
    export __IS_NOT_SIMULATOR_simulator\=NO
    export arch\=undefined_arch
    export variant\=normal
    /bin/sh -c /Users/danielwork/Library/Developer/Xcode/DerivedData/app-cymolvqkpahvonemqintvsrxcivl/Build/Intermediates.noindex/ArchiveIntermediates/app/IntermediateBuildFilesPath/app.build/Release-iphoneos/app.build/Script-7DBE0F475C1B809C21066621.sh

Instabug: PLIST_ABS_PATH: /Users/danielwork/git/peak-energy/app/ios/app/Info.plist
Instabug: Looking for Token...
Instabug: INSTABUG_APP_TOKEN not found. Make sure you've added the SDK initialization line Instabug.init Or added the environment variable INSTABUG_APP_TOKEN

I see that I get INSTABUG_APP_TOKEN not found

stale[bot] commented 11 months ago

This issue has been automatically marked as pending feedback because we need additional information to be able to investigate it further. It will be closed in 7 days if it remains inactive. Thank you for your contributions.

stale[bot] commented 10 months ago

This issue has been automatically closed since we haven't heard back from you. Please feel free to re-open the issue if you have more information to add.

oregev commented 10 months ago

Why is this close? We added the information required.

Please fix this, still not resolved.