forked from cjam/react-native-spotify-remote
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathRNSpotifyRemote.podspec
More file actions
22 lines (17 loc) · 790 Bytes
/
RNSpotifyRemote.podspec
File metadata and controls
22 lines (17 loc) · 790 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |s|
s.name = "RNSpotifyRemote"
s.version = package['version']
s.summary = package['description']
s.license = package['license']
s.authors = package['author']
s.homepage = package['repository']['url']
s.platform = :ios, "9.0"
s.source = { :git => package['repository']['url'], :tag => "v#{s.version}", :submodules => true }
s.source_files = "ios/*.{h,m}","ios/external/SpotifySDK/SpotifyiOS.framework/**/Headers/*.{h,m}"
s.preserve_path = "ios/external/SpotifySDK/SpotifyiOS.framework"
s.vendored_frameworks = "ios/external/SpotifySDK/SpotifyiOS.framework"
s.dependency 'RNEventEmitter'
s.dependency 'React-Core'
end