问题描述
我是这个基于颤振的应用程序创建的新手.现在我成功地在我的 windows 系统 android studio 中使用 flutter 插件创建了一个示例应用程序,该应用程序也运行成功.好的,现在我想为同一个应用程序生成 IPA 应用程序.我不知道如何在使用 android studio 时为 IOS 设备生成 IPA?任何人都请帮助我..
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..
我使用的是 windows 10 系统,我的 android studio 版本是 3.4.2
I am using windows 10 system and my android studio version as 3.4.2
我想在 android studio 中生成 .ipa 文件,就像我在 android studio 中生成 .apk 文件一样.
I want to generate .ipa file in android studio, like how i generate .apk file in android studio.
推荐答案
从 Windows 机器生成 IPA 的唯一方法是使用 CI/CD 服务,例如 Codemagic
使用此 文章:
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
或Gitlab
). - 从设置>构建平台> IOS
- 将您收到的
.app
文件更改为.zip
并解压缩. - 您将找到一个名为
Runner.app
的文件,将其放入文件夹并压缩回来. - 将扩展名从
.zip
更改为.ipa
.
- link your repository (
Github
,BitBucket
, orGitlab
). - 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
.
这是你的第一个没有 Mac 设备的 IOS 版本.
And here's your first IOS build without a Mac device.
这篇关于如何在 Windows 中使用 Android Studio 为 Flutter 应用程序生成 IOS IPA?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!