forked from zmxv/react-native-sound
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRNSound.podspec
More file actions
23 lines (18 loc) · 722 Bytes
/
RNSound.podspec
File metadata and controls
23 lines (18 loc) · 722 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNSound"
s.version = package['version']
s.summary = package['description']
s.homepage = "https://github.com/zmxv/react-native-sound"
s.license = package['license']
s.author = package['author']
s.source = { :git => 'https://github.com/zmxv/react-native-sound.git', :tag => "v#{s.version}" }
s.default_subspec = 'Core'
s.requires_arc = true
s.platform = :ios, "7.0"
s.dependency 'React-Core'
s.subspec 'Core' do |ss|
ss.source_files = "RNSound/*.{h,m}"
end
end