0

I'm trying really hard to create a .ipa to install it in my iOS device (internal distribution) with this command eas build --platform ios --profile development but it never works. As EAS Build logs says, it seems to be a problem with fastlane signing but I think all credential configurations are setted propertly, even my device UDID created and included.

enter image description here

Here is my eas.json

{
  "cli": {
    "version": ">= 0.54.1"
  },
  "build": {
    "development": {
      "distribution": "internal",
      "developmentClient": true,
      "android": {
        "gradleCommand": ":app:assembleDebug",
        "image": "latest",
        "buildType": "apk"
      },
      "ios": {
        "buildConfiguration": "Debug",
        "image": "macos-monterey-12.4-xcode-13.4"
      }
    }
    ...
  },
  "submit": {
    "production": {}
  }
}

and Android .apk is working fine but after 20 minutes build of .ipa the result is always the same: enter image description here

I give you some more information if it helps:

enter image description here

+---------------------------------------------+
|            Summary for gym 2.206.1          |
+---------------------------------------------+
| workspace                                         | ./AbiProAppNative.xcworkspace                                                                                                               |
| scheme                                            | AbiProAppNative                                                                                                                             |
| clean                                             | true                                                                                                                                        |
| output_directory                                  | ./build                                                                                                                                     |
| output_name                                       | App                                                                                                                                         |
| configuration                                     | Debug                                                                                                                                       |
| silent                                            | false                                                                                                                                       |
| skip_package_ipa                                  | false                                                                                                                                       |
| skip_package_pkg                                  | false                                                                                                                                       |
| export_method                                     | development                                                                                                                                 |
| export_options.provisioningProfiles.org.abiproapp | *[expo] org.abiproapp AdHoc 1676887999823                                                                                                   |
| export_xcargs                                     | OTHER_CODE_SIGN_FLAGS="--keychain /var/folders/h2/gp9wlkv11lg0qj6y2mnqgc_40000gn/T/turtle-v2-eb18f880-e72d-417a-aa16-7041ccb1d63b.keychain" |
| build_path                                        | /Users/expo/Library/Developer/Xcode/Archives/2023-02-20                                                                                     |
| result_bundle                                     | false                                                                                                                                       |
| buildlog_path                                     | ~/Library/Logs/gym                                                                                                                          |
| destination                                       | generic/platform=iOS                                                                                                                        |
| suppress_xcode_output                             | true                                                                                                                                        |
| xcodebuild_formatter                              | xcpretty                                                                                                                                    |
| disable_xcpretty                                  | true                                                                                                                                        |
| skip_profile_detection                            | false                                                                                                                                       |
| xcodebuild_command                                | xcodebuild                                                                                                                                  |
| skip_package_dependencies_resolution              | false                                                                                                                                       |
| disable_package_automatic_updates                 | false                                                                                                                                       |
| use_system_scm                                    | false                                                                                                                                       |
| xcode_path                                        | /Applications/Xcode.app                                                                                                                     |
+---------------------------------------------------+---------------------------------------------------------------------------------------------------------------------------------------------+

Thanks!

0 Answers0