video_trimmer icon indicating copy to clipboard operation
video_trimmer copied to clipboard

having error running for iOS

Open wanoghoco opened this issue 2 years ago • 1 comments

[!] CocoaPods could not find compatible versions for pod "ffmpeg_kit_flutter/https": In Podfile: ffmpeg_kit_flutter (from .symlinks/plugins/ffmpeg_kit_flutter/ios) was resolved to 4.5.1, which depends on ffmpeg_kit_flutter/https (= 4.5.1)

Specs satisfying the ffmpeg_kit_flutter/https (= 4.5.1) dependency were found, but they required a higher minimum deployment target.

wanoghoco avatar Jul 06 '22 21:07 wanoghoco

Use these commands to install ffmpeg_kit_flutter correctly. don't forget to put minimum ios support to version 10.0. in my case, I put 14.0.

flutter clean
rm -Rf ios/Pods
rm -Rf ios/.symlinks
rm -Rf ios/Flutter/Flutter.framework
rm -Rf ios/Flutter/Flutter.podspec
flutter pub get
cd ios
pod install 
arch -x86_64 pod install  //(On an M1 mac use => arch -x86_64 pod install)
cd ..
flutter build ios
flutter run

ParhaMDeF avatar Sep 18 '22 18:09 ParhaMDeF

Are you still facing this issue?

sbis04 avatar Oct 23 '22 09:10 sbis04