-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathOSBarcodeLib.podspec
More file actions
19 lines (14 loc) · 871 Bytes
/
Copy pathOSBarcodeLib.podspec
File metadata and controls
19 lines (14 loc) · 871 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
require 'json'
package = JSON.parse(File.read(File.join(__dir__, 'package.json')))
Pod::Spec.new do |spec|
spec.name = package['name']
spec.version = package['version']
spec.summary = package['description']
spec.homepage = "https://github.com/OutSystems/OSBarcodeLib-iOS"
spec.license = { :type => package['license'], :file => 'LICENSE' }
spec.author = { package['author'] => package['email'] }
spec.source = { :http => "https://github.com/OutSystems/OSBarcodeLib-iOS/releases/download/#{spec.version}/OSBarcodeLib.zip", :type => "zip" }
spec.vendored_frameworks = "OSBarcodeLib.xcframework"
spec.ios.deployment_target = '13.0'
spec.swift_versions = ['5.0', '5.1', '5.2', '5.3', '5.4', '5.5', '5.6', '5.7', '5.8', '5.9']
end