Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Why does `ionic run ios` error with "No matching provisioning profile found"?

My goal is to run my Ionic app on my iPhone. I don't figure out what could be the reason explaining this exception:

    myIonicApp$ sudo ionic run ios

    Check dependencies

    === BUILD TARGET WealCome OF PROJECT WealCome WITH CONFIGURATION Debug ===

    Check dependencies
    Code Sign error: No matching provisioning profile found: Your build settings specify a provisioning profile with the UUID “dabcc352-0b59-415a-bcd1-6f6ea1d1fbe6”, however, no such provisioning profile was found.
    CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 7.1'

I have this build settings:

enter image description here

The organizer:

enter image description here

like image 466
Mik378 Avatar asked Sep 22 '14 07:09

Mik378


1 Answers

As Mik378 said on his comment the right destination path of the provisioning profiles seems to be /Library/MobileDevice so all you have to do is copy everything you need to that folder:

sudo cp -r ~/Library/MobileDevice/ /Library/MobileDevice/
like image 94
Mario Shtika Avatar answered Oct 21 '22 20:10

Mario Shtika