Skip to content

Commit

Permalink
Update configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaskioko committed Jan 19, 2025
1 parent 6fe5925 commit dfe3226
Showing 1 changed file with 10 additions and 3 deletions.
13 changes: 10 additions & 3 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ platform :ios do
device: TEST_DEVICE,
clean: true,
result_bundle: true,
xcargs: "-retry-tests-on-failure",
xcargs: "-retry-tests-on-failure -skipPackagePluginValidation",
number_of_retries: 2,
fail_build: true,
derived_data_path: "derived_data"
Expand All @@ -37,7 +37,7 @@ platform :ios do
device: TEST_DEVICE,
clean: true,
result_bundle: true,
xcargs: "-retry-tests-on-failure",
xcargs: "-retry-tests-on-failure -skipPackagePluginValidation",
number_of_retries: 2,
fail_build: true,
derived_data_path: "derived_data"
Expand Down Expand Up @@ -65,7 +65,14 @@ platform :ios do
clean: true,
skip_package_ipa: true,
skip_archive: true,
skip_codesigning: true
skip_codesigning: true,
export_method: "development",
export_options: {
method: "development",
signingStyle: "automatic",
compileBitcode: false,
provisioningProfiles: {}
}
)
end

Expand Down

0 comments on commit dfe3226

Please sign in to comment.