[ios] Fix signing for the new live widget

Signed-off-by: Roman Tsisyk <roman@tsisyk.com>
This commit is contained in:
Roman Tsisyk 2024-12-24 13:53:53 +00:00
parent 342863a8b1
commit 780e67ebd7
2 changed files with 29 additions and 5 deletions

View file

@ -5195,7 +5195,7 @@
"@executable_path/../../Frameworks",
);
MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE;
PRODUCT_BUNDLE_IDENTIFIER = app.organicmaps.debug.OMapsWidgetExtension;
PRODUCT_BUNDLE_IDENTIFIER = app.organicmaps.debug.widgetextension;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "DEBUG $(inherited)";
@ -5206,10 +5206,11 @@
ED46DDE42D098A0C007CACD6 /* Release */ = {
isa = XCBuildConfiguration;
buildSettings = {
CODE_SIGN_STYLE = Automatic;
CODE_SIGN_STYLE = Manual;
CURRENT_PROJECT_VERSION = 1;
DEBUG_INFORMATION_FORMAT = "dwarf-with-dsym";
DEVELOPMENT_TEAM = 9Z6432XD7L;
DEVELOPMENT_TEAM = "";
"DEVELOPMENT_TEAM[sdk=iphoneos*]" = 9Z6432XD7L;
GENERATE_INFOPLIST_FILE = YES;
INFOPLIST_FILE = OMapsWidgetExtension/Info.plist;
INFOPLIST_KEY_CFBundleDisplayName = OMapsWidgetExtension;
@ -5221,8 +5222,10 @@
"@executable_path/../../Frameworks",
);
MARKETING_VERSION = 1.0;
PRODUCT_BUNDLE_IDENTIFIER = app.organicmaps.debug.OMapsWidgetExtension;
PRODUCT_BUNDLE_IDENTIFIER = app.organicmaps.widgetextension;
PRODUCT_NAME = "$(TARGET_NAME)";
PROVISIONING_PROFILE_SPECIFIER = "";
"PROVISIONING_PROFILE_SPECIFIER[sdk=iphoneos*]" = "WidgetExtension Release";
SKIP_INSTALL = YES;
TARGETED_DEVICE_FAMILY = "1,2";
VALIDATE_PRODUCT = YES;

View file

@ -68,6 +68,26 @@ platform :ios do
skip_install: false,
filename: 'keys/CarPlay_AppStore.mobileprovision'
)
get_provisioning_profile(
api_key_path: 'keys/appstore.json',
app_identifier: 'app.organicmaps.widgetextension',
provisioning_name: 'WidgetExtension Release',
ignore_profiles_with_different_name: true,
readonly: true,
development: true,
skip_install: false,
filename: 'keys/WidgetExtension_Release.mobileprovision'
)
get_provisioning_profile(
api_key_path: 'keys/appstore.json',
app_identifier: 'app.organicmaps.widgetextension',
provisioning_name: 'WidgetExtension AppStore',
ignore_profiles_with_different_name: true,
adhoc: false,
readonly: true,
skip_install: false,
filename: 'keys/WidgetExtension_AppStore.mobileprovision'
)
end
end
@ -96,7 +116,8 @@ platform :ios do
export_method: 'app-store',
export_options: {
provisioningProfiles: {
'app.organicmaps' => 'CarPlay AppStore'
'app.organicmaps' => 'CarPlay AppStore',
'app.organicmaps.widgetextension' => 'WidgetExtension AppStore',
}
},
skip_profile_detection: false,