From e155de0be40e020403b0afda7d30865a9dda9378 Mon Sep 17 00:00:00 2001 From: Paul Schmiedmayer Date: Mon, 25 Sep 2023 21:15:13 -0700 Subject: [PATCH] Use Automatic? --- fastlane/Fastfile | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index c1493e6..989e806 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -34,14 +34,7 @@ platform :ios do desc "Build app" lane :build do build_app( - derived_data_path: ".derivedData", - export_options: { - signingStyle: "manual", - provisioningProfiles: { - "edu.stanford.templateapplication" => "TemplateApplication", - "edu.stanford.templateapplication.watchapp" => "TemplateWatchApplication" - } - } + derived_data_path: ".derivedData" ) end