I've changed my app bundle id "com.mycompany.Appname" to "com.mycompany.appname", to be the same as the app subscribed to itunes connect.
But after changing the name in info.plist, when I try to validate in organizer I get the two following errors (Be aware of uppercases and lowercases):
Invalid Code Signing Entitlements. Your application bundle's signature contains code signing entitlements that are not supported on iOS. Specifically, value 'XXXXXX.com.mycompany.appname' for key 'application-indetifier' in 'Payload/Appname.app/Appname' is not supported. This value should be a string starting with your TEAMID, followed by a dot '.', followed by the bundle indetifier.
The executable at Payload/Appname.app/Appname in Payload/Appname.app has been signed with identifier 'com.mycompany.appname' which does not match the bundle identifier 'com.mycompany.Appname'.
Is like I've changed the bundle identifier but XCode still thinks that the app name is with uppercase.
You must use the bundle id that of appID related to provisioning profile that you are using to sign the application. Try creating new appid with bundle identifier 'com.mycompany.appname'(exactly same as in the plist file- case sensitive) in dev portal and create new provisioning profile with that, then use that provisioning profile to sign your app.