From 410af8f2366d37da5f5a7854460583b5f6fa256e Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 9 Mar 2026 18:52:04 +0500 Subject: [PATCH] Fix iOS build: use update_code_signing_settings and explicit -allowProvisioningUpdates flags --- ios/LibNovel/fastlane/Fastfile | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/ios/LibNovel/fastlane/Fastfile b/ios/LibNovel/fastlane/Fastfile index a860d2a..cb3fb28 100644 --- a/ios/LibNovel/fastlane/Fastfile +++ b/ios/LibNovel/fastlane/Fastfile @@ -12,20 +12,22 @@ platform :ios do xcodeproj: "LibNovel.xcodeproj" ) - # Use automatic signing - Xcode will find the right profile + # Enable automatic code signing and set team update_code_signing_settings( use_automatic_signing: true, - path: "LibNovel.xcodeproj", team_id: "GHZXC6FVMU", - targets: ["LibNovel"] + targets: ["LibNovel"], + path: "LibNovel.xcodeproj" ) - # Build the app + # Build the app with automatic signing build_app( scheme: "LibNovel", export_method: "app-store", clean: true, configuration: "Release", + export_xcargs: "-allowProvisioningUpdates", + xcargs: "-allowProvisioningUpdates", export_options: { method: "app-store", teamID: "GHZXC6FVMU",