Another Flutter build ipa nightmare

Here again, after the annoying 1100 code error when try to run the flutter build ipa command.

Now, the trouble indicates something related to the Provisioning Profile. After two days trying, the solution came after lunch.

Besides the sign in method in XCode was set to automatic, as the flutter pages recommends, the command exits with the following error message:

Provisioning profile doesn’t include signing certificate

So, I took 4 steps to get it done:

  • I decided to upgrade the Flutter version;
  • Run flutter clean;
  • Run flutter build ios;
  • Run flutter build ipa -v –release –dart-define=…

And, like magic, the command generated the ipa file.

Foooooo!!! Hope helps others.

 

Leave a Reply

Your email address will not be published. Required fields are marked *