英文:
how to make flutter app work on ios device
问题
我们有一个Flutter应用程序,我们成功制作了一个APK文件并使其在真实的Android设备上运行。我们希望在IOS设备上做同样的事情。我们尝试使用以下命令:flutter build ios --release
,但没有成功。
我们在Windows计算机上工作,目标是创建一个文件,将其发送到IOS设备并下载到设备上。
英文:
We have a Flutter app and we succeeded to make an apk file and make it work on a real Android device. We want to make the same thing on an IOS device. we tried to use the command: flutter build ios --release
, but it didnt work.
we work on windows computer and the goal is to create a file, send it to an IOS device and and dwonload it to the device.
答案1
得分: 1
你需要具备MacOS环境才能生成用于iOS设备的.ipa
文件。
英文:
You need to have a MacOS environment to be able to generate .ipa
file for use on IOS device
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论