Reputation: 71
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.
Upvotes: 6
Views: 9800
Reputation: 7889
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:
Github
, BitBucket
, or Gitlab
)..app
file you received to .zip
and extract it.Runner.app
, put in a folder and compress it back..zip
to .ipa
.And here's your first IOS build without a Mac device.
Upvotes: 9