First Version

This commit is contained in:
abhay-raizada
2024-03-13 19:15:37 +05:30
parent 6b9afc2c8f
commit cd7973f49d
10 changed files with 1560 additions and 336 deletions

View File

@@ -51,5 +51,15 @@ target 'PeerScribe' do
config[:reactNativePath],
:mac_catalyst_enabled => false
)
installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
target.build_configurations.each do |config|
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
end