Fix CarPlay voice entitlement: use correct com.apple.developer.carplay-voice-based-conversation#4595
Merged
Merged
Conversation
…based-conversation Agent-Logs-Url: https://github.com/home-assistant/iOS/sessions/5bea5d97-4fe0-4cba-b6e6-f567283e0270 Co-authored-by: bgoncal <5808343+bgoncal@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
bgoncal
April 30, 2026 21:05
View session
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the special entitlements injection script to use the correct CarPlay voice entitlement key, ensuring CarPlay-enabled App builds receive the intended capability.
Changes:
- Replaced the incorrect entitlement key
com.apple.developer.carplay-voice-based-conversational-appwithcom.apple.developer.carplay-voice-based-conversation. - Updated associated CI/disabled warning messages to match the corrected entitlement key.
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #4595 +/- ##
======================================
Coverage ? 0
======================================
Files ? 0
Lines ? 0
Branches ? 0
======================================
Hits ? 0
Misses ? 0
Partials ? 0 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Fixes the CarPlay voice entitlement introduced in #4594. The wrong entitlement key
com.apple.developer.carplay-voice-based-conversational-appwas used; the correct one iscom.apple.developer.carplay-voice-based-conversation.Changes
Configuration/Entitlements/activate_special_entitlements.shto usecom.apple.developer.carplay-voice-based-conversationinstead ofcom.apple.developer.carplay-voice-based-conversational-app.Impact
Only affects App target builds with CarPlay enabled (
ENABLE_CARPLAY=1). No other files or targets are affected.