简体   繁体   中英

how to test and debug IOS Flutter app on Windows?

I'm making app for IOS with Flutter but I'm on Windows. How can I test and debug my app on Windows? Is it possible? Thanks

It's not possible to test it directly from Windows. To build and test an iOS app you have to have a Mac.

Nonetheless, there are workarounds. For example, you could use a tool like Appollo ( https://github.com/Appollo-CLI/Appollo ) to build and test iOS apps on Windows.

Install the tool through your terminal

pip install appollo

Configure Appollo to work with your Apple Developer Account: https://appollo.readthedocs.io/en/master/tutorial/2_configure_app_store_connect.html

And then you can either start a build in configuration to access your remote Mac and configure XCode or test your app in the iOS simulator.

appollo build start --build-type configuration

Or build an IPA to test on your local device

appollo build start --build-type ad-hoc

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM