diff --git a/Telegram/BUILD b/Telegram/BUILD
index 0ce0df914c..c4422dcd8d 100644
--- a/Telegram/BUILD
+++ b/Telegram/BUILD
@@ -277,6 +277,12 @@ official_unrestricted_voip_fragment = """
"""
unrestricted_voip_fragment = official_unrestricted_voip_fragment if telegram_bundle_id in official_bundle_ids else ""
+official_carplay_fragment = """
+com.apple.developer.carplay-messaging
+
+"""
+carplay_fragment = official_carplay_fragment if telegram_bundle_id in official_bundle_ids else ""
+
telegram_entitlements_template = """
com.apple.developer.icloud-services
@@ -304,7 +310,7 @@ telegram_entitlements_template = """
{telegram_team_id}.{telegram_bundle_id}
com.apple.developer.icloud-container-environment
{telegram_icloud_environment}
-""" + apple_pay_merchants_fragment + unrestricted_voip_fragment
+""" + apple_pay_merchants_fragment + unrestricted_voip_fragment + carplay_fragment
plist_fragment(
name = "TelegramEntitlements",