"ionic run ios" How to add provisioning profiles "ionic run ios" How to add provisioning profiles xcode xcode

"ionic run ios" How to add provisioning profiles


You need to go into XCode and add those provisioning profiles to your device.

Set those provisioning profiles into the build process and add the profile to the device as well.

Though you may not be using Visual Studio, their explanation on the setup works for all methods of building Ionic apps.

The documentation is here, but to tell you what's going on:

  1. Make sure you have a developer account to make provisioning profiles.
  2. You would sign into Itunes Connect to add your device as a testing device
  3. Create an App ID
  4. Create a provisioning profile associated to that App ID
  5. Download the provisioning file into Xcode
  6. Add the provisioning file to your device via Xcode
  7. Run ionic run ios --device -l

That should do the trick.

Follow the setup guide by Microsoft starting at create your provisioning profile.