Skip to content

Commit

Permalink
fix: Fix dependency versions not specified in podfile.
Browse files Browse the repository at this point in the history
fix #456
  • Loading branch information
DylanVann committed May 3, 2019
1 parent 14f4e4e commit 89f3379
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions react-native-fast-image-example-cocoapods/ios/Podfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -33,12 +33,12 @@ PODS:
- libwebp/webp (0.6.1)
- React (0.59.5):
- React/Core (= 0.59.5)
- react-native-fast-image (5.2.1):
- FLAnimatedImage
- react-native-fast-image (5.4.0):
- FLAnimatedImage (~> 1)
- React
- SDWebImage/Core
- SDWebImage/GIF
- SDWebImage/WebP
- SDWebImage/Core (~> 4)
- SDWebImage/GIF (~> 4)
- SDWebImage/WebP (~> 4)
- react-native-image-picker (0.28.1):
- React
- React/Core (0.59.5):
Expand Down Expand Up @@ -150,7 +150,7 @@ SPEC CHECKSUMS:
glog: aefd1eb5dda2ab95ba0938556f34b98e2da3a60d
libwebp: 0f01098c6c17175391af621b2f14150f3ca16e16
React: 90adac468c7b72bf1fa6c64bf230650f851a8388
react-native-fast-image: df6296b6b5e7e7921ea2f43e0be1cd33ce027081
react-native-fast-image: 54f5b9f585a31b2f1c1eadd8377eb5ee16d09d3b
react-native-image-picker: fd93361c666f397bdf72f9c6c23f13d2685b9173
RNGestureHandler: b65d391f4f570178d657b99a16ec99d09b8656b0
RNVectorIcons: 6607bd3a30291d0edb56f9bbe7ae411ee2b928b0
Expand Down
8 changes: 4 additions & 4 deletions react-native-fast-image.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,8 @@ Pod::Spec.new do |s|
s.exclude_files = "ios/Vendor/**/*.{h,m}"

s.dependency 'React'
s.dependency 'SDWebImage/Core'
s.dependency 'SDWebImage/GIF'
s.dependency 'SDWebImage/WebP'
s.dependency 'FLAnimatedImage'
s.dependency 'SDWebImage/Core', '~> 4'
s.dependency 'SDWebImage/GIF', '~> 4'
s.dependency 'SDWebImage/WebP', '~> 4'
s.dependency 'FLAnimatedImage', '~> 1'
end

0 comments on commit 89f3379

Please sign in to comment.