Cant Release App for IOS #2415
Replies: 5 comments 7 replies
-
Hi! I'm facing a similar issue, Cocoapods is also resulting in the same error but the process looks slightly different as shown below:
Did you find any possible solutions? |
Beta Was this translation helpful? Give feedback.
-
@mmconnectdev Try running this command in the root of your project, if any files got updated, push them to git and see if pod install works in codemagic after that: rm -f ios/Podfile.lock && rm -rf ios/Pods && cd ios && pod install --repo-update && pod repo update && cd .. |
Beta Was this translation helpful? Give feedback.
-
For anyone that is facing the same issue while running pod install (during the step of cloning multiple repositories), it happened to me because right on the beginning of CI I set a git configuration to set authorization for private repositories, after that every git repository action only worked for the one I set authorization. Basically, I managed to only use this configuration for the repository I needed authorization with the following command:
|
Beta Was this translation helpful? Give feedback.
-
Hi, @mmconnectdev, Apologies for the delayed reply. The error you're encountering is a dependency conflict within your Podfile configuration, specifically involving the OneSignalXCFramework and onesignal_flutter dependencies. You need to make sure that the versions specified for OneSignalXCFramework in your Podfile and the version required by the onesignal_flutter plugin are compatible. Since onesignal_flutter requires exactly version 5.1.3, Please update the versions in your Let me know, if you still face any issues. |
Beta Was this translation helpful? Give feedback.
-
I'm tentatively closing the discussion since we haven't heard back from you. You can open the discussion again by replying to this message or opening a new discussion. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
If you are looking for help, please confirm the following...
Which mobile framework are you using?
Flutter (Dart)
Steps to reproduce
Flutter Version: 3.3.4
Xcode version: 14.1
CocoaPods version: 1.15.2
I press build and i get this error whenreaches the step: "Building iOS". This is the 1st time i cant build for IOS building on codemagic. I dont know what changed...
This project works fine on Android using windows without any errors. The problem is just on IOS side.
already runned the command Pod Install on the MacOS and i got this:
Expected results
Build and Release
Actual results
on CodeMagic i get this error:
Build id (optional)
65f32b361443608d47612b07
Beta Was this translation helpful? Give feedback.
All reactions