Home > Net >  Command PhaseScriptExecution failed with a nonzero exit code while testing Flutter App in XCode
Command PhaseScriptExecution failed with a nonzero exit code while testing Flutter App in XCode

Time:09-22

I am trying to test my Flutter App on my iPhone but every time i try to run it i in XCode get the error message: Command PhaseScriptExecution failed with a nonzero exit code

I tried a lot of things.

  1. desintegrate and integrate pods
  2. Lock and unlock keychain access
  3. To run the embededded Pods Framework only while instaling 4 And yes there is no space in my project directory

Is there any other solution? Thangs for any answer.

CodePudding user response:

try this way!

  1. delete .symlinks
  2. delete pods directory
  3. delete podfile.lock file

and reinstall the pods. and run it on x-code

CodePudding user response:

You can try deleting the derived data in Xcode and then delete podfile.lock and install the podfile again. If the error persist you can share the screenshot of error.

  • Related