-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
react-native-fast-image/react-native-fast-image.podspec
Lines 23 to 25 in 2a3438c
s.dependency 'SDWebImage/Core' | |
s.dependency 'SDWebImage/GIF' | |
s.dependency 'SDWebImage/WebP' |
Guys I'd say is insanely unsafe to not fix a version for the pod dependencies. With the new SDWebImage update you will need to update this dependency declaration because they removed those subspecs.
I propose;
- You strictly force the dependency version
pod 'SDWebImage/GIF', '4.4.6'
for instance. - You weakly force the dependency version
pod 'SDWebImage/GIF', '~> 4'
ORpod 'SDWebImage/GIF', '~> 4.4'
for instance. - If you don't want to force dependency versions, I'm afraid you will need to update the package.
Hope it helps!
Metadata
Metadata
Assignees
Labels
No labels