Home > Back-end >  How to build ipa file in windows?
How to build ipa file in windows?

Time:08-12

I am developing a flutter application, I am using windows, I build the apk file. I wanted to build for the ios part. But it is not possible in windows and I use codemagic.

but code magic builds Runner.app file. and I use the diawi website to convert to ipa but file size exeeds.

Is there any other way to generate ipa file in windows.

CodePudding user response:

Diawi alternate solution, please check maybe it's helpful for you. Here you can upload large MB files.

https://www.installonair.com/

CodePudding user response:

With windows machine you can not build ipa files.

But there is an alternative solution to generate ipa files. For that use a CI/CD service like Codemagic using the steps described in this example.

  • link your repository github, bitbucket, etc.
  • 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.

Now you can get your iOS build without mac device

  • Related