Skip to content

Commit deaef94

Browse files
committed
[Podspec] Remove AnimationExperimental subspec and fix Image subspec
Summary: AnimationExperimental is gone; remove it. The Image subspec now depends on the networking code, so we have to pull in those files. These changes were necessary to publish 0.10.0-rc to CocoaPods, so would be convenient to get them into master for 0.11. Fixes #2354 Closes facebook/react-native#2341 Github Author: James Ide <ide@jameside.com>
1 parent 26c4be6 commit deaef94

1 file changed

Lines changed: 1 addition & 6 deletions

File tree

React.podspec

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -50,12 +50,6 @@ Pod::Spec.new do |s|
5050
ss.preserve_paths = "Libraries/AdSupport/*.js"
5151
end
5252

53-
s.subspec 'RCTAnimationExperimental' do |ss|
54-
ss.dependency 'React/Core'
55-
ss.source_files = "Libraries/Animation/RCTAnimationExperimental*.{h,m}"
56-
ss.preserve_paths = "Libraries/Animation/*.js"
57-
end
58-
5953
s.subspec 'RCTGeolocation' do |ss|
6054
ss.dependency 'React/Core'
6155
ss.source_files = "Libraries/Geolocation/*.{h,m}"
@@ -64,6 +58,7 @@ Pod::Spec.new do |s|
6458

6559
s.subspec 'RCTImage' do |ss|
6660
ss.dependency 'React/Core'
61+
ss.dependency 'React/RCTNetwork'
6762
ss.source_files = "Libraries/Image/*.{h,m}"
6863
ss.preserve_paths = "Libraries/Image/*.js"
6964
end

0 commit comments

Comments
 (0)