This commit is contained in:
Isaac 2026-02-24 14:00:41 +01:00
parent 3ad16682c4
commit ad30eb2bc5
7 changed files with 478 additions and 20 deletions

View file

@ -549,6 +549,12 @@ store_signin_fragment = """
"""
signin_fragment = store_signin_fragment if telegram_bundle_id in store_bundle_ids else ""
official_background_gpu_fragment = """
<key>com.apple.developer.background-tasks.continued-processing.gpu</key>
<true/>
"""
background_gpu_fragment = official_background_gpu_fragment if telegram_bundle_id == "ph.telegra.Telegraph" else ""
plist_fragment(
name = "TelegramEntitlements",
extension = "entitlements",
@ -564,6 +570,7 @@ plist_fragment(
communication_notifications_fragment,
notification_filtering_fragment,
signin_fragment,
background_gpu_fragment,
])
)