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:
- link your repository (Github, BitBucket , or Gitlab).
- from settings > build for platforms > IOS
- change the .app file you received to .zip and extract it.
- You will find a file called Runner.app, put in a folder and compress it back.
- change the extension from .zip to .ipa.
And here's your first IOS build without a Mac device.