skip to Main Content

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

2

Answers


  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
    
    Login or Signup to reply.
  2. I’ve ran into the same problem. I tried building the application on iOS Simulator and it keeps getting swift compile errors of all sorts. I followed Usama solution above and it worked for me.

    I’m using

    • MacBook M1
    • Xcode 14.2
    • Flutter 3.7.1
    • Android Studio 2022.1 Electric Eel
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search