dengage-tech / dengage-ios-sdk

5 stars 0 forks source link

'shared' is unavailable in application extensions for iOS "react-native": "0.73.6", #17

Open sedatates opened 2 months ago

sedatates commented 2 months ago

image

Version 5.68.2

AyishmAzeem commented 2 months ago

I'm encountering the same issue. Is there a solution available?

sedatates commented 1 month ago

I'm encountering the same issue. Is there a solution available?

You should add this to your podfile. you can also customize for an specific target.

post_install do |installer| installer.pods_project.targets.each do |target| target.build_configurations.each do |config| config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'NO' end end