Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
iGroza committed Oct 4, 2024
1 parent 31ba209 commit f3d1669
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions ios/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -105,12 +105,16 @@ target 'haqq' do
installer.pods_project.targets.each do |target|
if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" # <--- this
target.build_configurations.each do |config|
if target.name == 'Sentry'
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
config.build_settings['CODE_SIGNING_ALLOWED'] = 'NO'
end
end

# https://github.com/getsentry/sentry-react-native/issues/4095
target.build_configurations.each do |config|
if target.name == 'Sentry'
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'YES'
end
end
end
end
end
end

0 comments on commit f3d1669

Please sign in to comment.