From dfa641e9681b63c38934e982f54da94e253755aa Mon Sep 17 00:00:00 2001 From: Ali <> Date: Wed, 17 Feb 2021 18:22:11 +0400 Subject: [PATCH] Update example configuration --- Telegram/BUILD | 7 +++++-- build-system/example-configuration/variables.bzl | 1 + 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Telegram/BUILD b/Telegram/BUILD index 1e71e26878..9f9cb55dd7 100644 --- a/Telegram/BUILD +++ b/Telegram/BUILD @@ -31,6 +31,7 @@ load( "telegram_aps_environment", "telegram_team_id", "telegram_enable_icloud", + "telegram_enable_siri", ) load("@build_bazel_rules_apple//apple:resources.bzl", @@ -347,7 +348,10 @@ app_groups_fragment = """ application-identifier {telegram_team_id}.{telegram_bundle_id} -""" +""".format( + telegram_team_id=telegram_team_id, + telegram_bundle_id=telegram_bundle_id +) plist_fragment( name = "TelegramEntitlements", @@ -549,7 +553,6 @@ watchos_extension( watchos_application( name = "TelegramWatchApp", - #app_icons = , bundle_id = "{telegram_bundle_id}.watchkitapp".format( telegram_bundle_id = telegram_bundle_id, ), diff --git a/build-system/example-configuration/variables.bzl b/build-system/example-configuration/variables.bzl index 20d17db1fa..0e2cc37616 100644 --- a/build-system/example-configuration/variables.bzl +++ b/build-system/example-configuration/variables.bzl @@ -9,4 +9,5 @@ telegram_is_appstore_build = "true" telegram_appstore_id = "686449807" telegram_app_specific_url_scheme = "tg" telegram_aps_environment = "production" +telegram_enable_siri = true telegram_enable_icloud = true