Skip to content

Commit

Permalink
Dont require signing pod targets
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Oct 24, 2022
1 parent bebb2df commit 28fb280
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 1 deletion.
8 changes: 8 additions & 0 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,5 +49,13 @@ target 'NewExpensify' do
installer.pods_project.build_configurations.each do |config|
config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
end

installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle"
target.build_configurations.each do |config|
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end
end
end
end
2 changes: 1 addition & 1 deletion ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -1023,6 +1023,6 @@ SPEC CHECKSUMS:
Yoga: eca980a5771bf114c41a754098cd85e6e0d90ed7
YogaKit: f782866e155069a2cca2517aafea43200b01fd5a

PODFILE CHECKSUM: 5745ec909229219e7469609dba23118be023f564
PODFILE CHECKSUM: d202bd0248cbb5ddf4d40c0d592b31bfbd85498a

COCOAPODS: 1.11.3

0 comments on commit 28fb280

Please sign in to comment.