lisen87 / image_pickers

图片多选并压缩,保存图片到相册,视频多选,预览图片和视频
Apache License 2.0
90 stars 59 forks source link

IOS 18 #150

Open AlejandroRodriguezO opened 1 month ago

AlejandroRodriguezO commented 1 month ago

Unsupported fetch for asset collections with type 2 and subtype 2

Aruljebaraj commented 1 month ago

same here

alejandro-rodriguez-expe commented 1 month ago

same here

make a PR with pleasure you can look it up https://github.com/AlejandroRodriguezO/image_pickers/tree/master

ashut08 commented 4 weeks ago

Hi everyone,

I encountered a similar issue and implemented a temporary fix by manually updating the ZLPhotoBrowser dependency in the Podfile. Here's how you can apply this fix while waiting for an official update:

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
  pod 'ZLPhotoBrowser', '4.5.5'  # Temporary fix to resolve the issue
end

Temporary Solution:

This manually specifies the ZLPhotoBrowser version to 4.5.5 in your Podfile, which addresses the issue until the package is updated.

Additionally, I have created a PR to address this issue in the image_pickers package, which you can follow here: PR #152.

Once the PR is reviewed and merged, this manual intervention will no longer be necessary, and you will be able to use the updated package directly.