-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathRNSmartCode.podspec
More file actions
22 lines (17 loc) · 805 Bytes
/
RNSmartCode.podspec
File metadata and controls
22 lines (17 loc) · 805 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 = "RNSmartCode"
s.version = package["version"]
s.homepage = "https://github.com/RoJoHub/react-native-smart-code"
s.summary = "Support React & ReactNative.In react-native,it's create base64 String,which is qrcode or barcode ,and without webview.In react,we use jsbarcode."
s.license = "MIT"
s.author = { "Jerry.Luo" => "tiancailuohao@gmail.com" }
s.ios.deployment_target = '7.0'
s.tvos.deployment_target = '9.0'
s.source = { :git => "git@github.com:RoJoHub/react-native-smart-code.git" }
s.source_files = 'ios/*/*.{h,m}'
s.preserve_paths = "*.js"
s.dependency "React"
s.dependency 'React-Core'
end