I found an issue with Xcode 8 where .entitlements files are not being referenced properly for each scheme. Basically, my Debug .entitlements file is being referenced for my Release scheme. This is causing an issue because we implemented the new Rich push notification logic and that requires the use of App groups.
I am using two different teams (Development and Production), so there will be two specific App Groups.
production
value for theaps-environment
entitlement, despite being properly configured inCODE_SIGN_ENTITLEMENTS
Build Setting. – Headrest