Skip to content

Commit

Permalink
restore s.dependency 'React' to podspec
Browse files Browse the repository at this point in the history
  • Loading branch information
Wonday committed Sep 27, 2018
1 parent 2e5b630 commit 35cc4b4
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 6 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,9 @@ A react-native module that can listen on orientation changing of device, get cur

### ChangeLog

v1.0.16
1. restore s.dependency 'React' to podspec

v1.0.15
1. remove s.dependency 'React' from podspec

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-orientation-locker",
"version": "1.0.15",
"version": "1.0.16",
"summary": "A react-native module that can listen on orientation changing of device",
"description": "A react-native module that can listen on orientation changing of device, get current orientation, lock to preferred orientation.",
"homepage": "https://github.com/wonday/react-native-orientation-locker",
Expand Down
9 changes: 4 additions & 5 deletions react-native-orientation-locker.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,13 @@ Pod::Spec.new do |s|
s.version = package['version']
s.summary = package['summary']
s.description = package['description']
s.author = package['author']['name']
s.license = package['license']
s.author = package['author']
s.homepage = package['homepage']
s.source = { :git => 'https://github.com/wonday/react-native-orientation-locker.git', :tag => s.version }

s.requires_arc = true
s.platform = :ios, '7.0'

s.platform = :ios, '8.0'
s.preserve_paths = 'README.md', 'package.json', 'index.js'
s.source_files = 'iOS/RCTOrientation/*.{h,m}'
s.source_files = 'iOS/**/*.{h,m}'
s.dependency 'React'
end

0 comments on commit 35cc4b4

Please sign in to comment.