Skip to content

Commit

Permalink
chore: update podspec (#658)
Browse files Browse the repository at this point in the history
- fix source_files path
- fix tag version format
  • Loading branch information
bang9 authored and hyochan committed Aug 24, 2019
1 parent e306b72 commit 1d6d217
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions RNIap.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,13 @@ package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNIap"
s.version = package['version']
s.summary = "RNIap"
s.description = package['description']
s.summary = package['description']
s.homepage = "https://github.com/dooboolab/react-native-iap"
s.license = "MIT"
s.author = package['author']
s.platform = :ios, "7.0"
s.source = { :git => "https://github.com/dooboolab/react-native-iap", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.platform = :ios, "9.0"
s.source = { :git => "https://github.com/dooboolab/react-native-iap.git", :tag => "#{s.version}" }
s.source_files = "ios/*.{h,m}"
s.requires_arc = true

s.dependency 'React'
Expand Down

0 comments on commit 1d6d217

Please sign in to comment.