Book Image

iOS Development with Xamarin Cookbook

By : Dimitrios Tavlikos (USD)
Book Image

iOS Development with Xamarin Cookbook

By: Dimitrios Tavlikos (USD)

Overview of this book

Table of Contents (22 chapters)
iOS Development with Xamarin Cookbook
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Creating an ad hoc distribution bundle


In this recipe, we will learn how to create a bundle of our app. We will be able to send this bundle to beta testers so that they can test it on their devices.

Getting ready

To create an ad hoc distribution bundle, make sure you have created an App ID on the iOS Provisioning Portal for your app.

How to do it...

The process of creating ad hoc provisioning profiles is similar to the process of creating development distribution profiles. The following steps will guide you through the process:

  1. Create a distribution certificate. For distributing apps to various devices that are not connected to your Mac, but also for submitting to the App Store, you need a distribution certificate to be installed. Follow the same steps described in the previous recipe for creating a developer certificate. This time though, select App Store and Ad-Hoc under the Production section when adding a new certificate. All the other required steps are the same.

  2. Create a distribution provisioning...