Installing provisioning profile on device does nothing xcode 6

  • Go to apple portal and add all the required devices there.
  • Then go to the provisioning profile you want to download, edit it and make sure the following things:

  • The App ID associated with the provisioning profile and your App ID in the info.plist is the same.

  • All the required devices are included in this profile(they are checked marked for the profile).
  • Check the associated provisioning profile certificate is valid and you have a private key pair for that certificate.

  • In xcode settings select the provisioning profile and code signing identity(the certifcate) for the scheme you are running the application.


Rkey, I had this same problem. If you haven't found a solution, this is how I solved mine. Instead of trying to install a provisioning profile by yourself, run the app on the device without trying to set it up yourself. Now, if I'm not mistaken, you'll get the "no provisioning profile found for this executable" message or something like that.

You need to change the Code Signing Identities in the build settings of your Xcode6. Change everything [Code signing identity, Debug, Any SDK, Any iOS SDK, Release, Any iOS SDK)to iOS Developer and set Provisioning Profile to Automatic.

After that, if you try to run the app on the phone again, the prompt will give you an option to "Fix Issue" and clicking on "fix issue" solves the problem.

Hope it works for you.