ios - XCode couldn't find a provisioning profile -


since release of xcode 8, haven't been able complete successful build ios app using cordova. i'm using cordova 7.0.1 , xcode 8.3.3 , getting same error on "cordova build ios":

no profiles 'bundle_id' found: xcode couldn't find provisioning profile matching 'bundle_id'. code signing required product type 'application' in sdk 'ios 10.3'

i've created , re-created certificates , provisioning profiles, made sure correct bundle id selected, double clicked certificates install in keychain, downloaded profiles, , nothing seems working. i've tried creating build.json file in root directory cordova following:

{   "ios": {     "debug": {       "codesignidentity": "iphone developer",       "developmentteam": "<team id>",       "packagetype": "development"     },     "release": {       "codesignidentity": "iphone developer",       "developmentteam": "<team id>",       "packagetype": "app-store"     }   } 

specifying "provisioningprofile" uuid of provisioning profile not either.

i'm able complete build in xcode , create archive , install device, crashes right after splash screen. assuming because cordova didn't complete successful build.

i've been struggling weeks , have been searching forums everywhere , nothing has helped. i've tried closing , reopening xcode lot of people have suggested , didn't either.

thoughts?

edit:

i've tried restarting xcode bunch of times after adding provisioning profiles , have tried removing ios platform using cordova , re-adding. neither of these options worked.

bundle identifier in xcode , bundle id same. check again.


Comments

Popular posts from this blog

javascript - Create a stacked percentage column -

Optimising Firebase database by automatically overwriting data -

javascript - Angular UI-Grid customTemplate directive causing rows to load slowly/? -