Open gettoknowdavid opened 1 year ago
try running pod repo update
first
This usually requires clearing the pod cache, Please refer to the steps below
1) Make sure platform :ios, '12.1'
is in ios/Podfile
2) Run the following commands
flutter clean
cd ios && rm -rf Pods Podfile.lock && pod cache clean -all && pod deintegrate
cd .. && flutter pub get
cd ios && pod install --repo-update
cd .. && flutter build ios
pod "livekit_client" will conflict with library "livekit_client" from flutter. Change "spec.name" in LiveKitClient.podspec to other name it will work
Description Livekit implementation on Android works well, but when I try to run it on iOS, we run into this error:
Steps To Reproduce
Additional Context I tried changing the minimum deployment target (12.1, 13.6 and even 16.1) but it did not resolve the issue. How can I solve this?