diff --git a/MealMood.xcodeproj/project.pbxproj b/MealMood.xcodeproj/project.pbxproj index 40d2dff..0eac9a6 100644 --- a/MealMood.xcodeproj/project.pbxproj +++ b/MealMood.xcodeproj/project.pbxproj @@ -1193,7 +1193,8 @@ ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_GLOBAL_ACCENT_COLOR_NAME = AccentColor; CODE_SIGN_ENTITLEMENTS = MealMoodWatch/MealMoodWatch.entitlements; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Apple Distribution"; + CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 79; DEVELOPMENT_TEAM = 2825Q76T7H; ENABLE_PREVIEWS = YES; @@ -1206,6 +1207,7 @@ ); MARKETING_VERSION = 2.1.0; PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood.watchkitapp; + PROVISIONING_PROFILE_SPECIFIER = "com.alexandrevazquez.mealmood.watchkitapp AppStore"; SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_VERSION = 5.0; @@ -1243,7 +1245,8 @@ isa = XCBuildConfiguration; buildSettings = { CODE_SIGN_ENTITLEMENTS = MealMoodWatchWidget/MealMoodWatchWidget.entitlements; - CODE_SIGN_STYLE = Automatic; + CODE_SIGN_IDENTITY = "Apple Distribution"; + CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 79; DEVELOPMENT_TEAM = 2825Q76T7H; GENERATE_INFOPLIST_FILE = NO; @@ -1255,6 +1258,7 @@ ); MARKETING_VERSION = 2.1.0; PRODUCT_BUNDLE_IDENTIFIER = com.alexandrevazquez.mealmood.watchkitapp.widget; + PROVISIONING_PROFILE_SPECIFIER = "com.alexandrevazquez.mealmood.watchkitapp.widget AppStore"; SDKROOT = watchos; SKIP_INSTALL = YES; SWIFT_VERSION = 5.0; diff --git a/fastlane/Fastfile b/fastlane/Fastfile index a493d7a..189ad41 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -10,7 +10,9 @@ platform :ios do manageAppVersionAndBuildNumber: false, provisioningProfiles: { "com.alexandrevazquez.mealmood" => "com.alexandrevazquez.mealmood AppStore", - "com.alexandrevazquez.mealmood.widget" => "com.alexandrevazquez.mealmood.widget AppStore" + "com.alexandrevazquez.mealmood.widget" => "com.alexandrevazquez.mealmood.widget AppStore", + "com.alexandrevazquez.mealmood.watchkitapp" => "com.alexandrevazquez.mealmood.watchkitapp AppStore", + "com.alexandrevazquez.mealmood.watchkitapp.widget" => "com.alexandrevazquez.mealmood.watchkitapp.widget AppStore" } }