I had the same problem when trying to update the application. And here is what I found:
I checked the permissions of the identifier application of the old application and the new application. You can do this by running codesign -d --entitlements :- path/to/AppName.app/AppName or open the file "archived-extended-rights.xcent" along the path "AppName.app/AppName".
The application identifier for the old application was "1234XXX5X6.com.mycompany.myapp", but in the new application was "1234XXX5X6.com.mycompany.myapp. Develop ."
I usually set the " Bundle Identifier " directly to Info.plist .

But I did not know that in the Build Settings project there is a property << β Product Bundle Identifier ..

The previous version of the application was built using Xcode 7.3.1 and had the following settings:
- Info.plist: com.mycompany.myapp
- Build Settings: com.mycompany.myapp. development
- Application ID: 1234XXX5X6.com.mycompany.myapp
The new version was built with Xcode 8.2.1 and had the following settings:
- Info.plist: com.mycompany.myapp
- Build Settings: com.mycompany.myapp. development
- Application ID: 1234XXX5X6.com.mycompany.myapp. Development
It seems that the new Xcode has a different source for the application id. So I fixed " Product Identifier> " and my problem was resolved.
source share