Home > Software engineering >  Flutter build IOS on windows
Flutter build IOS on windows

Time:05-26

I'm working on a flutter project and I want to build the IPA of my code using windows. I don't want to test the application in my windows I want just to build the IPA. Is it possible to do it. Any help is highly appreciated.

CodePudding user response:

The only way to generate an IPA from you windows machine is by using a CI/CD service likeCodemagic using the steps described in this article:

  1. link your repository (Github, BitBucket , or Gitlab).
  2. from settings > build for platforms > IOS
  3. change the .app file you received to .zip and extract it.
  4. You will find a file called Runner.app, put in a folder and compress it back.
  5. change the extension from .zip to .ipa.

And here's your first IOS build without a Mac device.

  • Related