diff --git a/iphone/Maps/Maps.xcodeproj/project.pbxproj b/iphone/Maps/Maps.xcodeproj/project.pbxproj index 55156947d4..b7a5b6b8d6 100644 --- a/iphone/Maps/Maps.xcodeproj/project.pbxproj +++ b/iphone/Maps/Maps.xcodeproj/project.pbxproj @@ -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; diff --git a/xcode/fastlane/Fastfile b/xcode/fastlane/Fastfile index 22aaad363e..36c796e575 100644 --- a/xcode/fastlane/Fastfile +++ b/xcode/fastlane/Fastfile @@ -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,