Hello tech lovers, if you are encountering this error: TMS-90078: Missing potentially required entitlement - Your app, or a library that’s included in your app, uses Apple Push Notification service (APNs) registration APIs, but the APS Environment Entitlement isn’t included in the app signature’s entitlements.
READ MORE:
Foods you can be eating without getting fat
SOLUTION: THESE 3 STEPS MUST BE ACCOMPLISHED
Let us update the Entitlements.plist file with a missing information
1. Open this this file(If exist, if not create it): in your flutter project and add the missing keywords and its string at the middle of xml
ProjectFolder/ios/runner/Entitlements.plist
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>aps-environment</key> <!-- Add this -->
<string>production</string> <!-- And this -->
</dict>
</plist>
SHARE THIS POST
0 comments:
Post a Comment