D V
D V

Reputation: 211

how to generate an .ipa file for xamarin.forms app in visual studio

can you please let me know how to generate an .ipa file for xamarin.forms app from visual studio ? can I generate .ipa file from visual studio on windows machine by virtually connecting mac ?

Upvotes: 2

Views: 5709

Answers (1)

Srusti Thakkar
Srusti Thakkar

Reputation: 1911

  1. Add certificates and provisional profiles in mac first.
  2. Right click on your ios project. Select Properties.
  3. Select certificates and provisional profiles in iOS bundle signing tab.
  4. Select IPA options and in release mode checked build iTunes package archive(ipa), and provide package name.
  5. Just clean and build your project on iphone device.
  6. You can find .ipa in your app/ios/bin/iphone/release folder.

for further information link is provided above. Thanks

Upvotes: 2

Related Questions