From 7da5582075c60a3c916abd654771b7241783a10c Mon Sep 17 00:00:00 2001 From: Admin Date: Mon, 9 Mar 2026 18:18:30 +0500 Subject: [PATCH] fix: add manual code signing args to build_app in fastlane --- ios/LibNovel/fastlane/Fastfile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ios/LibNovel/fastlane/Fastfile b/ios/LibNovel/fastlane/Fastfile index b630caf..dee453d 100644 --- a/ios/LibNovel/fastlane/Fastfile +++ b/ios/LibNovel/fastlane/Fastfile @@ -12,12 +12,15 @@ platform :ios do xcodeproj: "LibNovel.xcodeproj" ) - # Build the app + # Build the app with manual code signing build_app( scheme: "LibNovel", export_method: "app-store", clean: true, + configuration: "Release", + xcargs: "CODE_SIGN_STYLE=Manual CODE_SIGN_IDENTITY='Apple Distribution' -allowProvisioningUpdates", export_options: { + method: "app-store", provisioningProfiles: { "com.kalekber.LibNovel" => ENV["PROVISIONING_PROFILE_NAME"] || "LibNovel Distribution" }