@stripe/stripe-react-native plugin fails iOS EAS build

Hi, I have a problem with eas build -p ios when adding stripe plugin to config:

 [
        '@stripe/stripe-react-native',
        {
          merchantIdentifier: process.env.STRIPE_MERCHANT_ID,
          enableGooglePay: false,
        },
      ],

When commeting this lines, build works. Problem exists only during iOS build, android build works well.

Expo config:

import type { ConfigContext, ExpoConfig } from 'expo/config';

import packageJson from './package.json';

// eslint-disable-next-line import/no-anonymous-default-export, import/no-default-export
export default function ({ config }: ConfigContext): ExpoConfig {
  return {
    ...config,
    sdkVersion: '47.0.0',
    platforms: ['ios', 'android'],
    jsEngine: 'hermes',
    name: 'Wojna Warzyw',
    scheme: 'wojnawarzyw',
    version: packageJson.version,
    slug: 'ww-customer-app',
    privacy: 'hidden',
    owner: 'darthwade',
    orientation: 'portrait',
    userInterfaceStyle: 'light',
    backgroundColor: '#FFFFFF',
    primaryColor: '#FAAF00',
    androidNavigationBar: {
      barStyle: 'dark-content',
      backgroundColor: '#000000',
    },
    ios: {
      supportsTablet: false,
      usesAppleSignIn: true,
      bundleIdentifier: 'pl.wojnawarzyw.app',
      buildNumber: packageJson.iosBuildNumber,
      config: {
        usesNonExemptEncryption: false,
      },
      infoPlist: {
        NSCameraUsageDescription:
          'This app uses the camera to scan barcodes on delivered boxes to them to share their feedback.',
      },
    },
    android: {
      package: 'pl.wojnawarzyw.app',
      versionCode: packageJson.androidVersionCode,
      adaptiveIcon: {
        foregroundImage: './src/assets/images/adaptive-icon.png',
        backgroundColor: '#FAAF00',
      },
      permissions: ['com.google.android.gms.permission.AD_ID'],
    },
    icon: './src/assets/images/icon.png',
    splash: {
      image: './src/assets/images/splash.png',
      resizeMode: 'contain',
      backgroundColor: '#FAAF00',
    },
    web: {
      favicon: './src/assets/images/favicon.png',
    },
    updates: {
      fallbackToCacheTimeout: 0,
    },
    assetBundlePatterns: ['**/*'],
    plugins: [
      [
        '@stripe/stripe-react-native',
        {
          merchantIdentifier: process.env.STRIPE_MERCHANT_ID,
          enableGooglePay: false,
        },
      ],
      [
        'expo-build-properties',
        {
          // https://github.com/expo/expo/blob/main/packages/expo-build-properties/build/pluginConfig.js
          android: {
            enableProguardInReleaseBuilds: true,
            minSdkVersion: 21,
            compileSdkVersion: 33,
            targetSdkVersion: 33,
            // https://developer.android.com/studio/releases/build-tools
            buildToolsVersion: '33.0.1',
            // kotlinVersion: '1.6.10', // expo default
            // kotlinVersion: '1.6.21', // stripe-android
            kotlinVersion: '1.7.20', // latest
          },
          ios: {
            deploymentTarget: '13.0',
          },
        },
      ],
      'expo-apple-authentication',
      'sentry-expo',
    ],
    packagerOpts: {
      config: 'metro.config.js',
      sourceExts: [
        'expo.ts',
        'expo.tsx',
        'expo.js',
        'expo.jsx',
        'ts',
        'tsx',
        'js',
        'jsx',
        'json',
        'wasm',
        'svg',
      ],
    },
    hooks: {
      postPublish: process.env.SENTRY_AUTH_TOKEN
        ? [
            {
              file: 'sentry-expo/upload-sourcemaps',
              config: {
                setCommits: true,
                organization: process.env.SENTRY_ORG,
                project: process.env.SENTRY_PROJECT,
                authToken: process.env.SENTRY_AUTH_TOKEN,
              },
            },
          ]
        : undefined,
    },
    extra: {
      eas: {
        projectId: 'fdf61dca-c2ef-4d53-9a3d-ac4d44a10c88',
      },

      DEV_MODE: process.env.DEV_MODE,
      API_BASE_URL: process.env.API_BASE_URL,
      WEB_BASE_URL: process.env.WEB_BASE_URL,
      FB_APP_ID: process.env.FB_APP_ID,
      WEB_GOOGLE_CLIENT_ID: process.env.WEB_GOOGLE_CLIENT_ID,
      IOS_GOOGLE_CLIENT_ID: process.env.IOS_GOOGLE_CLIENT_ID,
      ANDROID_GOOGLE_CLIENT_ID: process.env.ANDROID_GOOGLE_CLIENT_ID,
      KLAVIYO_PUBLIC_API_KEY: process.env.KLAVIYO_PUBLIC_API_KEY,
      STRIPE_PUBLISHABLE_KEY: process.env.STRIPE_PUBLISHABLE_KEY,
      STRIPE_MERCHANT_ID: process.env.STRIPE_MERCHANT_ID,
      SENTRY_DSN: process.env.SENTRY_DSN,
    },
  };
}

package.json

{
  "name": "ww-customer-app",
  "version": "1.4.2",
  "iosBuildNumber": "1.4.2.1",
  "androidVersionCode": 37,
  "private": true,
  "engines": {
    "node": ">=16",
    "yarn": "1.x"
  },
  "volta": {
    "node": "18.12.1",
    "yarn": "1.22.19"
  },
  "packageManager": "yarn@1.22.19",
  "scripts": {
    "with-local-env": "env-cmd -f ./.env",
    "with-production-env": "env-cmd -f ./.env.production",
    "format": "prettier --write .",
    "verify:ci": "yarn typecheck && yarn lint && yarn with-local-env expo install --check",
    "verify": "yarn format && yarn typecheck && yarn lint --fix && yarn with-local-env expo install --fix",
    "add-plugin": "yarn with-local-env expo install",
    "start": "yarn with-local-env expo start --dev-client",
    "build-ios-local": "yarn with-local-env expo run:ios",
    "build-android-local": "yarn with-local-env expo run:android",
    "build-ios-device-cloud": "eas build -p ios --profile development --non-interactive",
    "build-ios-simulator-cloud": "eas build -p ios --profile development-simulator --non-interactive",
    "build-android-cloud": "eas build -p android --profile development --non-interactive",
    "prebuild-ios": "expo prebuild -p ios --clean",
    "build-ios-prod": "expo install --check && eas build -p ios --profile production --auto-submit --non-interactive",
    "build-android-prod": "expo install --check && eas build -p android --profile production --auto-submit --non-interactive",
    "build-all-prod": "expo install --check && eas build -p all --profile production --auto-submit --non-interactive",
    "submit-ios-prod": "eas submit -p ios --latest",
    "submit-android-prod": "eas submit -p android --latest",
    "update-expo-secrets": "yarn with-local-env eas secret:push --force --scope project --env-file ./.env.production",
    "update-gh-secrets": "gh secret set --repo darthwade/ww-customer-app --app actions --env-file ./.env.github-actions",
    "clean": "rm -rf ./.expo && rm -rf ./ios && rm -rf ./android && rm -rf ./.vscode/.react",
    "reinstall": "rm -rf ./node_modules && rm ./yarn.lock && yarn install",
    "lint": "eslint --ext .ts,.tsx . --max-warnings 0",
    "typecheck": "tsc --noEmit",
    "bumpdeps": "yarn upgrade-interactive --latest",
    "bumpexpo": "npm i -g expo-cli eas-cli sharp-cli && yarn with-local-env expo-cli upgrade && yarn with-local-env expo-cli doctor",
    "open-simulator": "open -a Simulator",
    "open-pixel": "emulator -avd Pixel_XL_API_30",
    "list-android-avds": "emulator -list-avds"
  },
  "prettier": {
    "singleQuote": true
  },
  "dependencies": {
    "@apollo/client": "3.4.17",
    "@expo/vector-icons": "^13.0.0",
    "@react-native-async-storage/async-storage": "~1.17.3",
    "@react-native-community/netinfo": "9.3.5",
    "@react-native-picker/picker": "2.4.8",
    "@react-navigation/native": "^6.0.2",
    "@react-navigation/native-stack": "^6.9.7",
    "@sentry/react-native": "4.9.0",
    "@shopify/flash-list": "1.3.1",
    "@stripe/stripe-react-native": "0.19.0",
    "apollo-link-logger": "2.0.0",
    "big.js": "6.1.1",
    "date-fns": "2.28.0",
    "expo": "~47.0.9",
    "expo-apple-authentication": "~5.0.1",
    "expo-application": "~5.0.1",
    "expo-asset": "~8.7.0",
    "expo-auth-session": "~3.8.0",
    "expo-blur": "~12.0.1",
    "expo-build-properties": "~0.4.1",
    "expo-clipboard": "~4.0.1",
    "expo-constants": "~14.0.2",
    "expo-crypto": "~12.0.0",
    "expo-dev-client": "~2.0.1",
    "expo-device": "~5.0.0",
    "expo-font": "~11.0.1",
    "expo-linear-gradient": "~12.0.1",
    "expo-linking": "~3.3.0",
    "expo-mail-composer": "~12.0.0",
    "expo-navigation-bar": "~2.0.1",
    "expo-random": "~13.0.0",
    "expo-secure-store": "~12.0.0",
    "expo-splash-screen": "~0.17.5",
    "expo-status-bar": "~1.4.2",
    "expo-system-ui": "~2.0.1",
    "expo-updates": "~0.15.6",
    "expo-web-browser": "~12.0.0",
    "formik": "2.2.9",
    "graphql": "15.7.2",
    "lodash": "4.17.21",
    "moti": "0.17.1",
    "native-base": "3.4.25",
    "react": "18.1.0",
    "react-dom": "18.1.0",
    "react-native": "0.70.5",
    "react-native-confirmation-code-field": "^7.3.0",
    "react-native-fast-image": "^8.5.11",
    "react-native-gesture-handler": "~2.8.0",
    "react-native-keyboard-aware-scroll-view": "0.9.5",
    "react-native-masked-text": "^1.13.0",
    "react-native-modalize": "^2.0.13",
    "react-native-pager-view": "6.0.1",
    "react-native-picker-select": "^8.0.4",
    "react-native-reanimated": "~2.12.0",
    "react-native-safe-area-context": "4.4.1",
    "react-native-screens": "~3.18.0",
    "react-native-scrollable-navigation-bar": "^3.0.5",
    "react-native-svg": "13.4.0",
    "react-native-tab-view": "^3.1.1",
    "react-native-web": "~0.18.7",
    "sentry-expo": "~6.0.0",
    "tslib": "^2.3.1",
    "zod": "3.15.1",
    "zod-formik-adapter": "1.1.1"
  },
  "devDependencies": {
    "@babel/core": "^7.19.3",
    "@react-native-community/eslint-config": "3.2.0",
    "@types/big.js": "6.1.6",
    "@types/react": "~18.0.24",
    "@types/react-native": "~0.70.6",
    "@typescript-eslint/eslint-plugin": "5.47.0",
    "env-cmd": "10.1.0",
    "eslint": "7.32.0",
    "eslint-plugin-ft-flow": "2.0.3",
    "eslint-plugin-import": "2.26.0",
    "eslint-plugin-prettier": "4.2.1",
    "eslint-plugin-react-hooks": "^4.5.0",
    "prettier": "2.8.1",
    "react-native-svg-transformer": "1.0.0",
    "typescript": "^4.6.3"
  }
}

Fastlane output:

Creating Gymfile
2
Gymfile created
3
Successfully loaded '/Users/expo/workingdir/build/ios/Gymfile' 📄
4
5
+-----------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
6
|                                                                  Detected Values from './Gymfile'                                                                   |
7
+-----------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
8
| suppress_xcode_output | true                                                                                                                                        |
9
| clean                 | false                                                                                                                                       |
10
| scheme                | WojnaWarzyw                                                                                                                                 |
11
| configuration         | Release                                                                                                                                     |
12
| export_options        |                                                                                                                                             |
13
| export_xcargs         | OTHER_CODE_SIGN_FLAGS="--keychain /var/folders/h2/gp9wlkv11lg0qj6y2mnqgc_40000gn/T/turtle-v2-2f597a34-1b04-4303-9723-3383a5069982.keychain" |
14
| disable_xcpretty      | true                                                                                                                                        |
15
| buildlog_path         | /Users/expo/workingdir/logs                                                                                                                 |
16
| output_directory      | ./build                                                                                                                                     |
17
+-----------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
18
Resolving Swift Package Manager dependencies...
19
$ xcodebuild -resolvePackageDependencies -workspace ./WojnaWarzyw.xcworkspace -scheme WojnaWarzyw -configuration Release
20
â–¸ Command line invocation:
21
â–¸     /Applications/Xcode.app/Contents/Developer/usr/bin/xcodebuild -resolvePackageDependencies -workspace ./WojnaWarzyw.xcworkspace -scheme WojnaWarzyw -configuration Release
22
â–¸ User defaults from command line:
23
â–¸     IDEPackageSupportUseBuiltinSCM = YES
24
â–¸ --- xcodebuild: WARNING: Using the first of multiple matching destinations:
25
â–¸ { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
26
â–¸ { platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
27
â–¸ { platform:iOS Simulator, id:E4F0A83E-5E75-4C8A-A871-796043E2CD97, OS:16.0, name:iPhone 14 }
28
â–¸ { platform:iOS Simulator, id:8CF852C2-D053-4020-A861-01D707EE7C7B, OS:16.0, name:iPhone 14 Plus }
29
â–¸ { platform:iOS Simulator, id:FE2944BA-74BD-416E-93BB-3DC56388EF16, OS:16.0, name:iPhone 14 Pro }
30
â–¸ { platform:iOS Simulator, id:DD553D4E-CD22-4A2B-B095-50D480238D15, OS:16.0, name:iPhone 14 Pro Max }
31
â–¸ { platform:iOS Simulator, id:1F7C3904-A8F9-44F2-B6D0-31F51493EA22, OS:16.0, name:iPhone SE (3rd generation) }
32
â–¸ { platform:iOS Simulator, id:12DF1F1F-6206-4BDD-A49F-A0D3456DF497, OS:16.0, name:iPad (9th generation) }
33
â–¸ { platform:iOS Simulator, id:45E053AA-59FB-41B7-8DCA-2B11D2392A47, OS:16.0, name:iPad Air (5th generation) }
34
â–¸ { platform:iOS Simulator, id:7D6C0D20-8EEC-4074-9347-4F2DED6B610C, OS:16.0, name:iPad Pro (11-inch) (3rd generation) }
35
â–¸ { platform:iOS Simulator, id:A30864C0-A249-427B-B2F5-02B94465B342, OS:16.0, name:iPad Pro (12.9-inch) (5th generation) }
36
â–¸ { platform:iOS Simulator, id:823E8F2B-3928-438B-877F-E57CBB4D4227, OS:16.0, name:iPad mini (6th generation) }
37
â–¸ resolved source packages:
38
$ xcodebuild -showBuildSettings -workspace ./WojnaWarzyw.xcworkspace -scheme WojnaWarzyw -configuration Release
39
[stderr] --- xcodebuild: WARNING: Using the first of multiple matching destinations:
40
[stderr] { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
41
[stderr] { platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
42
[stderr] { platform:iOS Simulator, id:E4F0A83E-5E75-4C8A-A871-796043E2CD97, OS:16.0, name:iPhone 14 }
43
[stderr] { platform:iOS Simulator, id:8CF852C2-D053-4020-A861-01D707EE7C7B, OS:16.0, name:iPhone 14 Plus }
44
[stderr] { platform:iOS Simulator, id:FE2944BA-74BD-416E-93BB-3DC56388EF16, OS:16.0, name:iPhone 14 Pro }
45
[stderr] { platform:iOS Simulator, id:DD553D4E-CD22-4A2B-B095-50D480238D15, OS:16.0, name:iPhone 14 Pro Max }
46
[stderr] { platform:iOS Simulator, id:1F7C3904-A8F9-44F2-B6D0-31F51493EA22, OS:16.0, name:iPhone SE (3rd generation) }
47
[stderr] { platform:iOS Simulator, id:12DF1F1F-6206-4BDD-A49F-A0D3456DF497, OS:16.0, name:iPad (9th generation) }
48
[stderr] { platform:iOS Simulator, id:45E053AA-59FB-41B7-8DCA-2B11D2392A47, OS:16.0, name:iPad Air (5th generation) }
49
[stderr] { platform:iOS Simulator, id:7D6C0D20-8EEC-4074-9347-4F2DED6B610C, OS:16.0, name:iPad Pro (11-inch) (3rd generation) }
50
[stderr] { platform:iOS Simulator, id:A30864C0-A249-427B-B2F5-02B94465B342, OS:16.0, name:iPad Pro (12.9-inch) (5th generation) }
51
[stderr] { platform:iOS Simulator, id:823E8F2B-3928-438B-877F-E57CBB4D4227, OS:16.0, name:iPad mini (6th generation) }
52
Command timed out after 3 seconds on try 1 of 4, trying again with a 6 second timeout...
53
[stderr] --- xcodebuild: WARNING: Using the first of multiple matching destinations:
54
[stderr] { platform:iOS, id:dvtdevice-DVTiPhonePlaceholder-iphoneos:placeholder, name:Any iOS Device }
55
[stderr] { platform:iOS Simulator, id:dvtdevice-DVTiOSDeviceSimulatorPlaceholder-iphonesimulator:placeholder, name:Any iOS Simulator Device }
56
[stderr] { platform:iOS Simulator, id:E4F0A83E-5E75-4C8A-A871-796043E2CD97, OS:16.0, name:iPhone 14 }
57
[stderr] { platform:iOS Simulator, id:8CF852C2-D053-4020-A861-01D707EE7C7B, OS:16.0, name:iPhone 14 Plus }
58
[stderr] { platform:iOS Simulator, id:FE2944BA-74BD-416E-93BB-3DC56388EF16, OS:16.0, name:iPhone 14 Pro }
59
[stderr] { platform:iOS Simulator, id:DD553D4E-CD22-4A2B-B095-50D480238D15, OS:16.0, name:iPhone 14 Pro Max }
60
[stderr] { platform:iOS Simulator, id:1F7C3904-A8F9-44F2-B6D0-31F51493EA22, OS:16.0, name:iPhone SE (3rd generation) }
61
[stderr] { platform:iOS Simulator, id:12DF1F1F-6206-4BDD-A49F-A0D3456DF497, OS:16.0, name:iPad (9th generation) }
62
[stderr] { platform:iOS Simulator, id:45E053AA-59FB-41B7-8DCA-2B11D2392A47, OS:16.0, name:iPad Air (5th generation) }
63
[stderr] { platform:iOS Simulator, id:7D6C0D20-8EEC-4074-9347-4F2DED6B610C, OS:16.0, name:iPad Pro (11-inch) (3rd generation) }
64
[stderr] { platform:iOS Simulator, id:A30864C0-A249-427B-B2F5-02B94465B342, OS:16.0, name:iPad Pro (12.9-inch) (5th generation) }
65
[stderr] { platform:iOS Simulator, id:823E8F2B-3928-438B-877F-E57CBB4D4227, OS:16.0, name:iPad mini (6th generation) }
66
[stderr] 2022-12-24 02:39:33.607 xcodebuild[4471:14055] Requested but did not find extension point with identifier Xcode.InterfaceBuilderBuildSupport.PlatformDefinition
67
[stderr] 2022-12-24 02:39:33.607 xcodebuild[4483:14116] Requested but did not find extension point with identifier Xcode.InterfaceBuilderBuildSupport.PlatformDefinition
68
Detected provisioning profile mapping: {:"pl.wojnawarzyw.app"=>"f4b9d3c0-cad6-46eb-b1f8-211335f24b04"}
69
70
+--------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
71
|                                                                                       Summary for gym 2.210.0                                                                                        |
72
+--------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
73
| workspace                                              | ./WojnaWarzyw.xcworkspace                                                                                                                   |
74
| scheme                                                 | WojnaWarzyw                                                                                                                                 |
75
| clean                                                  | false                                                                                                                                       |
76
| output_directory                                       | ./build                                                                                                                                     |
77
| output_name                                            | WojnaWarzyw                                                                                                                                 |
78
| configuration                                          | Release                                                                                                                                     |
79
| silent                                                 | false                                                                                                                                       |
80
| skip_package_ipa                                       | false                                                                                                                                       |
81
| skip_package_pkg                                       | false                                                                                                                                       |
82
| export_options.method                                  | app-store                                                                                                                                   |
83
| export_options.provisioningProfiles.pl.wojnawarzyw.app | f4b9d3c0-cad6-46eb-b1f8-211335f24b04                                                                                                        |
84
| export_xcargs                                          | OTHER_CODE_SIGN_FLAGS="--keychain /var/folders/h2/gp9wlkv11lg0qj6y2mnqgc_40000gn/T/turtle-v2-2f597a34-1b04-4303-9723-3383a5069982.keychain" |
85
| build_path                                             | /Users/expo/Library/Developer/Xcode/Archives/2022-12-24                                                                                     |
86
| result_bundle                                          | false                                                                                                                                       |
87
| buildlog_path                                          | /Users/expo/workingdir/logs                                                                                                                 |
88
| destination                                            | generic/platform=iOS                                                                                                                        |
89
| suppress_xcode_output                                  | true                                                                                                                                        |
90
| xcodebuild_formatter                                   | xcpretty                                                                                                                                    |
91
| disable_xcpretty                                       | true                                                                                                                                        |
92
| skip_profile_detection                                 | false                                                                                                                                       |
93
| xcodebuild_command                                     | xcodebuild                                                                                                                                  |
94
| skip_package_dependencies_resolution                   | false                                                                                                                                       |
95
| disable_package_automatic_updates                      | false                                                                                                                                       |
96
| use_system_scm                                         | false                                                                                                                                       |
97
| xcode_path                                             | /Applications/Xcode.app                                                                                                                     |
98
+--------------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+
99
$ set -o pipefail && xcodebuild -workspace ./WojnaWarzyw.xcworkspace -scheme WojnaWarzyw -configuration Release -destination 'generic/platform=iOS' -archivePath /Users/expo/Library/Developer/Xcode/Archives/2022-12-24/WojnaWarzyw\ 2022-12-24\ 02.39.33.xcarchive archive | tee /Users/expo/workingdir/logs/WojnaWarzyw-WojnaWarzyw.log > /dev/null
100
    Run script build phase 'Start Packager' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'WojnaWarzyw' from project 'WojnaWarzyw')
101
    Run script build phase 'Bundle React Native code and images' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'WojnaWarzyw' from project 'WojnaWarzyw')
102
    Run script build phase 'Upload Debug Symbols to Sentry' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'WojnaWarzyw' from project 'WojnaWarzyw')
103
    Run script build phase '[CP-User] Generate app.config for prebuilt Constants.manifest' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'EXConstants' from project 'Pods')
104
    Run script build phase '[CP-User] Generate app.manifest for expo-updates' will be run during every build because it does not specify any outputs. To address this warning, either add output dependencies to the script phase, or configure it to run in every build by unchecking "Based on dependency analysis" in the script phase. (in target 'EXUpdates' from project 'Pods')
105
â–¸ ** ARCHIVE FAILED **
106
** ARCHIVE FAILED **
107
Exit status: 65
108
109
+-------------+-------------------------+
110
|           Build environment           |
111
+-------------+-------------------------+
112
| xcode_path  | /Applications/Xcode.app |
113
| gym_version | 2.210.0                 |
114
| sdk         | iPhoneOS16.0.sdk        |
115
+-------------+-------------------------+
116
Looks like fastlane ran into a build/archive error with your project
117
It's hard to tell what's causing the error, so we wrote some guides on how
118
to troubleshoot build and signing issues: https://docs.fastlane.tools/codesigning/getting-started/
119
Before submitting an issue on GitHub, please follow the guide above and make
120
sure your project is set up correctly.
121
fastlane uses `xcodebuild` commands to generate your binary, you can see the
122
the full commands printed out in yellow in the above log.
123
Make sure to inspect the output above, as usually you'll find more error information there
124
[stderr] [!] Error building the application - see the log above
125
Error: Fastlane build failed with unknown error. See logs for the "Run fastlane" and "Xcode Logs" phases for more information.
Fastlane errors in most cases are not printed at the end of the output, so you may not find any useful information in the last lines of output when looking for an error message.