Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

like image 969
Bhavik Soni Avatar asked May 18 '26 19:05

Bhavik Soni


1 Answers

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
like image 135
PesaCoder Avatar answered May 21 '26 15:05

PesaCoder



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!