Hi friends,
Xcode in iPad is creating a problem; it used to run perfectly without any problem in the beginning. Now after the renewal of license it started throwing an error message. I do not understand where I went wrong literally. Please help me to find the root cause of this error. Thanks in advance.
A valid provisioning profile for this executable was not found.
Answered By
points
N/A
#172727
Rovisioning profile error while running in iPad
This is a common mistake by developers that if you select “iPhone Distribution” provisioning profile. This profile means that you’re going to release your app and it doesn’t generate debugging codes. Release builds can never be debugged so you can’t debug it from “iPhone Distribution”.
In order to debug, you have to enter to “iPhone Developer” provisioning profile that will help you generate debugging symbols and let your app compile and run on your iPhone again.
Happy coding!