MWPhotoBrowser icon indicating copy to clipboard operation
MWPhotoBrowser copied to clipboard

MBProgressHUD problem

Open ruixingchen opened this issue 8 years ago • 4 comments

thanks very much for your great work, but I face some problem with MBProgressHUB

pod 'MBProgressHUD', '~> 1.0.0'
pod 'MWPhotoBrowser'

and pod give an error:

[!] Unable to satisfy the following requirements:

- `MBProgressHUD (~> 1.0.0)` required by `Podfile`
- `MBProgressHUD (~> 0.9)` required by `MWPhotoBrowser (2.1.2)`

I think we will also face this when use SDWebImage. this is not cool....

ruixingchen avatar Oct 13 '16 10:10 ruixingchen

You can do it yourself, modify MWPhotoBrowser.podspec changing s.dependency 'MBProgressHUD', '~> 0.9' to s.dependency 'MBProgressHUD', '>= 0.9'

qiulang avatar Oct 23 '16 04:10 qiulang

how to do this, I can't find MWPhotoBrowser.podspec in my project @qiulang Thank you

LemonChao avatar Mar 28 '17 02:03 LemonChao

But if I want to use 'MBProgressHUD', '~> 1.0.0' and 'MWPhotoBrowser' together,How can I fix it.

SuAdrenine avatar Apr 19 '17 00:04 SuAdrenine

upgrade MBProgressHUD to 1.0.0 and SDWebImage to 4.0.0:

pod "MWPhotoBrowser", :podspec =>'https://raw.githubusercontent.com/y500/MWPhotoBrowser/master/MWPhotoBrowser.podspec'

this may help you

y500 avatar Jun 12 '17 03:06 y500