Skip to content

Commit f797ca1

Browse files
committed
fix ios pod framework signing
1 parent 7a43b72 commit f797ca1

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

mobile/ios/App/Podfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,12 @@ end
2121

2222
post_install do |installer|
2323
assertDeploymentTarget(installer)
24+
25+
installer.pods_project.targets.each do |target|
26+
target.build_configurations.each do |config|
27+
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
28+
config.build_settings['CODE_SIGNING_REQUIRED'] = 'NO'
29+
config.build_settings['EXPANDED_CODE_SIGN_IDENTITY'] = ''
30+
end
31+
end
2432
end

0 commit comments

Comments
 (0)