-
-
Notifications
You must be signed in to change notification settings - Fork 114
Expand file tree
/
Copy pathRNSharedElement.podspec
More file actions
23 lines (17 loc) · 680 Bytes
/
RNSharedElement.podspec
File metadata and controls
23 lines (17 loc) · 680 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'
Pod::Spec.new do |s|
# NPM package specification
package = JSON.parse(File.read(File.join(File.dirname(__FILE__), "package.json")))
s.name = "RNSharedElement"
s.version = package['version']
s.summary = package['description']
s.description = package['description']
s.license = package['license']
s.authors = package['author']
s.homepage = package['homepage']
s.platforms = { :ios => "9.0" }
s.source = { :git => "https://github.com/IjzerenHein/react-native-shared-element.git", :tag => "v#{s.version}" }
s.source_files = "ios/**/*.{h,m}"
s.requires_arc = true
s.dependency 'React-Core'
end