Reputation: 171
I build a Xamarin Forms
application and I am using VMware to run my ios project. I generated an APK for android successfully, but I don't know how to generate IPA for the IOS project. Any idea?
Upvotes: 1
Views: 1429
Reputation: 1911
Using below steps you can generate IPA for ios:
You can find your IPA in your release/iPhone folder.
Upvotes: 2
Reputation: 1733
iOS executable file format is ipa, not APK.
Here is documentation about building iOS ipa using xamarin.
You need MacOs to compile Mac based binary files :
Use a Mac as your main development machine and run a Windows virtual machine with Visual Studio installed. using VM software such as Parallels or VMWare .
Use a Mac just as a build host. In this scenario it would be connected to the same network as a Windows machine with the necessary tools installed.
Upvotes: 2