Azaz Sayed
Azaz Sayed

Reputation: 63

Pod install fails for Flutters video_editor example

I am able to clone and run flutter video_editor https://github.com/seel-channel/video_editor in both the iPhone and Android .

However, if I copy its example part, it works in Android but not on iPhone (physical). Ipod install fails. Please see attached screenhsot.

I am using all the same versions of everything, for the example part as well as the clone part.

Podfile platform :ios, '9.3'

pubsec.yaml video_editor: path: ^1.8.0 helpers: ^1.1.1 image_picker: ^0.8.4 video_player: ^2.2.6

macOS Monterey version 12.1 xCode version 13.1

Android Studio Error xCode error

Upvotes: 0

Views: 185

Answers (1)

Chirag Kothiya
Chirag Kothiya

Reputation: 1099

It's work for me.

I download example from video editor.

Then in pubspec.yaml file I changed following

  # video_editor:
  #   path: ../
  video_editor: ^1.2.2

Then I fire command flutter pub get and pod install it's getting same error you want.

Then after I change platform :ios, '9.3' to platform :ios, '12.1' in pod file and changed deployment info 9.0 to 12.1 in target(Like below image) then fire commane pod install and it's work fine.

enter image description here

Upvotes: 1

Related Questions