-
Notifications
You must be signed in to change notification settings - Fork 39
feat: Merge app entitlements & provisioning profiles entitlements for iOS builds #637
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
feat: Merge app entitlements & provisioning profiles entitlements for iOS builds #637
Conversation
|
@ajanuar is attempting to deploy a commit to the Callstack Team on Vercel. A member of the Team first needs to authorize it. |
|
Hi @thymikee , this PR is ready to review. I'm doing testing internally with my project, i'll update it here with the result. |
| const transferRules = [ | ||
| 'com.apple.developer.icloud-container-identifiers', | ||
| 'com.apple.developer.icloud-services', | ||
| 'com.apple.developer.ubiquity-kvstore-identifier', | ||
| 'com.apple.developer.icloud-container-environment', | ||
| 'com.apple.security.application-groups', | ||
| 'keychain-access-groups', | ||
| 'com.apple.developer.associated-domains', | ||
| 'com.apple.developer.healthkit', | ||
| 'com.apple.developer.homekit', | ||
| 'inter-app-audio', | ||
| 'com.apple.developer.networking.networkextension', | ||
| 'com.apple.developer.maps', | ||
| 'com.apple.external-accessory.wireless-configuration', | ||
| 'com.apple.developer.siri', | ||
| 'com.apple.developer.nfc.readersession.formats', | ||
| ]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do we need to maintain this list of entitlements? Isn't there a way to avoid that? If not, where can we get the list from, so we can be sure it's in sync
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm following the list from fastlane
fastlane/fastlane#5130
i believe the list is from https://developer.apple.com/documentation/bundleresources/entitlements
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
awesome, let's add it as a comment please
Fix #611