Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to generate an IOS IPA in windows using Android studio for a Flutter app?

I am new to this flutter based app creation. Now I successfully created one sample app in my windows system android studio with flutter plugin that app also running successful. OK, now I want to generate the IPA app for the same application. I don't know how to generate the IPA for IOS device in using android studio? anyone help me please..

I am using windows 10 system and my android studio version as 3.4.2

I want to generate .ipa file in android studio, like how i generate .apk file in android studio.

like image 294
Prem B Avatar asked Mar 04 '23 12:03

Prem B


1 Answers

The only way to generate an IPA from you windows machine is by using a CI/CD service like Codemagic 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.

like image 81
Mazin Ibrahim Avatar answered Mar 06 '23 08:03

Mazin Ibrahim