Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 640 Bytes

resources.md

File metadata and controls

31 lines (21 loc) · 640 Bytes

Resources

Table of contents

Google

Apple

App's Capabilities (Entitlements)

Key-value pairs that grant an executable permission to use a service or technology.

Documentation - https://developer.apple.com/documentation/bundleresources/entitlements

Examples

iOS Push Notifications - aps-environment

<?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>
  <string>development</string>
</dict>
</plist>