We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e0cda60 commit 8ee8355Copy full SHA for 8ee8355
react-native-verloop-sdk.podspec
@@ -0,0 +1,19 @@
1
+require 'json'
2
+
3
+package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
4
5
+Pod::Spec.new do |s|
6
+ s.name = package['name']
7
+ s.version = package['version']
8
+ s.summary = package['description']
9
+ s.license = package['license']
10
11
+ s.authors = package['author']
12
+ s.homepage = package['homepage']
13
+ s.platforms = { :ios => "9.0", :osx => "10.13" }
14
15
+ s.source = { :git => "https://github.com/verloop/react-native-sdk.git", :tag => "v#{s.version}" }
16
+ s.source_files = "apple/**/*.{h,m}"
17
18
+ s.dependency 'React-Core'
19
+end
0 commit comments