We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dbdcef2 commit 393cb2dCopy full SHA for 393cb2d
1 file changed
blinkid-react-native.podspec
@@ -0,0 +1,22 @@
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
10
+ s.authors = package['author']
11
+ s.homepage = package['homepage']
12
+ s.license = package['license']
13
+ s.platform = :ios, "9.0"
14
15
+ s.source = { :git => "https://github.com/IdentSolutions/blinkid-react-native.git", :tag => "v#{s.version} }
16
+ s.source_files = "src/ios", "src/ios/**/*.{h,m}"
17
18
+ s.dependency 'React'
19
+ s.dependency 'PPBlinkID', '~> 2.16.0'
20
21
+ s.frameworks = 'UIKit'
22
+end
0 commit comments