Cannot find type 'PiPViewCoordinator' in scope

581

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
Share:
581
James Z
Author by

James Z

Database developer, with experience on SQL Server, Oracle, Sybase and PostgreSQL. Likes database performance tuning, perl and C++.

Updated on November 26, 2022

Comments

  • James Z
    James Z over 1 year

    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

    • Iducool
      Iducool almost 2 years
      able to fix it?
    • Admin
      Admin almost 2 years
      Hello @Iducool, Not yet.
    • Iducool
      Iducool almost 2 years
      here is what worked for me: stackoverflow.com/questions/70604813/… mostly same as below mentioned but with some additional detail.
    • Admin
      Admin almost 2 years
      Okay......Will check it. Thank you @Iducool.
  • Admin
    Admin about 2 years
    Hello @PesaCoder, thank your for your reply but this solution didn't worked for me.
  • Usama Elgendy
    Usama Elgendy about 2 years
    platform :ios, '11.0' ???
  • Admin
    Admin about 2 years
    platform: ios 12.0
  • Usama Elgendy
    Usama Elgendy almost 2 years
    try run app using XCode
  • Usama Elgendy
    Usama Elgendy almost 2 years
    and try to run flutter clean; rm ios/Podfile ios/Podfile.lock pubspec.lock; rm -rf ios/Pods ios/Runner.xcworkspace; flutter run
  • Admin
    Admin almost 2 years
    did this but not worked.