iOS Question Why does bridge have a different app id?

davepamn

Active Member
Licensed User
Longtime User
I am building bridge and get this error:

Check dependencies
Code Sign error: Provisioning profile does not match bundle identifier: The provisioning profile specified in your build settings (“IT_Mobile_App_Development”) has an AppID of “com.xxxx.app1” which does not match your bundle identifier “com.xxxx.app1.bridge”.
CodeSign error: code signing is required for product type 'Application' in SDK 'iOS 8.0'

I am trying to install the app on another device. The provision has the new udid.
 

Brian Robinson

Active Member
Licensed User
Longtime User
I think you need to change your provisioning profile to com.xxxx.*

it is saying your provisioning profile allows an app specified as com.xxxx.app1, but in your "Build Configuration" you have the package name as "com.xxxx.app1.bridge" so they don't match.

Or if this is the same app but you want to put it on a different device, then you must put the package name as "com.xxxx.app1"

Cheers
Brian
 
Upvote 0
Top