Open sagarthecoder opened 2 years ago
May I know how did you resolve this issue @sagarthecoder ? I have same issue now
I've already written. Follow those steps. @Sumina01
But solving in one place create same error in other libraries
Then I don't know and I'm currently not using this library. We manually created this type of project right now.
I fixed it adding below code in podfile
post_install do |installer|
react_native_post_install(installer)
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['APPLICATION_EXTENSION_API_ONLY'] = 'No'
end
end
end
Got this error (
'shared' is unavailable in application extensions for iOS: Use view controller based solutions where appropriate instead.
) insideTLAssetPreviewViewController
class and in this lineupdatePreferredContentSize(for: asset, isPortrait: UIApplication.shared.orientation?.isPortrait == true)
When I'm using this pods in any App Extension. Though I solved this by following ways.
Pods
projectTLPhotoPicker
NO
forRequire Only App-Extension-Safe-API
But Can you solve this please. Because when I install pod again then everytime I need to solve this error manually.