From ee339beeebe5b229faa1aa44035224e5fdb52c50 Mon Sep 17 00:00:00 2001 From: Mike Miller Date: Thu, 29 Feb 2024 17:38:19 +0200 Subject: [PATCH 1/2] Fix app store submission --- fastlane/Fastfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 192145493a..e2727ce43a 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -32,7 +32,11 @@ platform :ios do desc "Deliver a new Release build to the App Store" lane :release do build - upload_to_app_store + upload_to_app_store( + force: true, + automatic_release: false, + precheck_include_in_app_purchases: false + ) end desc "Deliver a new Beta build to Apple TestFlight" From 5ec7a7df59c9fd61dc4fbb870c692ca65854d659 Mon Sep 17 00:00:00 2001 From: Mike Miller Date: Thu, 29 Feb 2024 17:38:30 +0200 Subject: [PATCH 2/2] Fix testflight build path --- fastlane/Fastfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/fastlane/Fastfile b/fastlane/Fastfile index e2727ce43a..8a6c0fe667 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -43,7 +43,7 @@ platform :ios do lane :beta do # Missing Export Compliance can also be set through Deliverfile update_info_plist( - xcodeproj: "#{ENV['IOS_BUILD_PATH']}/iOS/Unity-iPhone.xcodeproj", + xcodeproj: "#{ENV['IOS_BUILD_PATH']}/Unity-iPhone.xcodeproj", plist_path: 'Info.plist', block: proc do |plist| plist['ITSAppUsesNonExemptEncryption'] = false