Skip to content

Commit

Permalink
[Podspec] Remove AnimationExperimental subspec and fix Image subspec
Browse files Browse the repository at this point in the history
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 facebook#2354
Closes facebook#2341
Github Author: James Ide <[email protected]>
  • Loading branch information
ide committed Aug 19, 2015
1 parent 26c4be6 commit deaef94
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions React.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -50,12 +50,6 @@ Pod::Spec.new do |s|
ss.preserve_paths = "Libraries/AdSupport/*.js"
end

s.subspec 'RCTAnimationExperimental' do |ss|
ss.dependency 'React/Core'
ss.source_files = "Libraries/Animation/RCTAnimationExperimental*.{h,m}"
ss.preserve_paths = "Libraries/Animation/*.js"
end

s.subspec 'RCTGeolocation' do |ss|
ss.dependency 'React/Core'
ss.source_files = "Libraries/Geolocation/*.{h,m}"
Expand All @@ -64,6 +58,7 @@ Pod::Spec.new do |s|

s.subspec 'RCTImage' do |ss|
ss.dependency 'React/Core'
ss.dependency 'React/RCTNetwork'
ss.source_files = "Libraries/Image/*.{h,m}"
ss.preserve_paths = "Libraries/Image/*.js"
end
Expand Down

0 comments on commit deaef94

Please sign in to comment.