jayeshpansheriya / image_picker_type

A Flutter plugin for iOS and Android for picking images from the image library, and taking new pictures with the camera or gallery and crop it.

Home Page:https://pub.dev/packages/image_picker_type

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Cannot upgrade image_picker: ^0.8.1+3

ccamba opened this issue · comments

Because image_picker_type 1.0.1 depends on image_picker ^0.7.5+2 and no versions of image_picker_type match >1.0.1 <2.0.0, image_picker_type ^1.0.1 requires image_picker ^0.7.5+2.
So, because xxxx depends on both image_picker ^0.8.1+3 and image_picker_type ^1.0.1, version solving failed.
pub get failed (1; So, because xxxx depends on both image_picker ^0.8.1+3 and image_picker_type ^1.0.1, version solving failed.)

@ccamba use can override package version like this:

dependency_overrides:
  image_picker: version

otherwise you can use latest version of plugin : image_picker_type 1.0.2

@jayeshindianic thanks, works !