I am attempting to create a flutter app and integrate the jitsi_meet flutter package i followed the instructions indicated on documentation.
My flutter version and IOS via flutter doctor
Flutter version 2.8.1
develop for iOS and macOS (Xcode 13.1)
My configuration pubspec.yaml
dependencies:
flutter:
sdk: flutter
jitsi_meet: ^4.0.0
My Podfile
platform :ios, '11.0'
post_install do |installer|
installer.pods_project.targets.each do |target|
target.build_configurations.each do |config|
config.build_settings['ENABLE_BITCODE'] = 'NO'
end
end
end
Added below keys/string on my pslist
<key>NSCameraUsageDescription</key>
<string>$(PRODUCT_NAME) MyApp needs access to your camera for meetings.</string>
<key>NSMicrophoneUsageDescription</key>
<string>$(PRODUCT_NAME) MyApp needs access to your microphone for meetings.</string>
After this configuration i also change the deployment build to ios 11 as stated from other solutions but after running build using my simulator iPhone 13
below error occur
Failed to build iOS app
Error output from Xcode build:
↳
** BUILD FAILED **
Xcode's output:
↳
<module-includes>:1:9: note: in file included from <module-includes>:1:
#import "Headers/jitsi_meet-umbrella.h"
^
/Users/kaori/Documents/development/projects/fluttermeet/ios/Pods/Target Support Files/jitsi_meet/jitsi_meet-umbrella.h:13:9: note: in file included from /Users/kaori/Documents/development/projects/fluttermeet/ios/Pods/Target Support Files/jitsi_meet/jitsi_meet-umbrella.h:13:
#import "JitsiMeetPlugin.h"
^
Cannot get it to build on ios.