'Cannot find type 'PiPViewCoordinator' in scope

I am getting following error when i install JitsiMeetSDK in flutter but i am unable to run app. Can somebody suggest me how can i resolve this issue?

error

I am using following:

  • Xcode : 13.1

  • Swift : 5

  • jitsi_meet: ^4.0.0

  • Android Studio Bumblebee



Solution 1:[1]

Note: Example compilable with XCode 12.2

then -->

Add this line in Podfile

post_install do |installer| 

installer.pods_project.targets.each do |target|
flutter_additional_ios_build_settings(target)
    target.build_configurations.each do |config|
      config.build_settings['ENABLE_BITCODE'] = 'NO'
      config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64"
       end
   end
 end

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1