0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 1 year has passed since last update.

Swift Compiler Error (Xcode): Cannot find 'PiPViewCoordinator' in scope

Posted at

はじめに

jitsiMeetのexampleコードをビルドするときにエラーが起きたので共有します。

エラー内容

Swift Compiler Error (Xcode): Cannot find 'PiPViewCoordinator' in scope

解決法

podfileの下の方にある記述を以下のように書き換える。

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

参考

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?