-
Notifications
You must be signed in to change notification settings - Fork 24
/
Herald.podspec
28 lines (19 loc) · 1.33 KB
/
Herald.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
Pod::Spec.new do |spec|
spec.name = "Herald"
spec.version = "2.2.0"
spec.summary = "Reliable Bluetooth communication library for iOS"
spec.description = <<-DESC
Herald provides reliable Bluetooth communication and range finding across a wide range of mobile devices, allowing Contact Tracing and other applications to have regular and accurate information to make them highly effective.
In addition, the Herald community defines suggested payloads to be exchanged over the Herald protocol for a range of applications, both contact tracing payloads (centralised, decentralised, and hybrid) and beyond (E.g. Bluetooth MESH to Consumer app gateway applications.)
Herald supports iOS, Android, and embedded devices.
DESC
spec.homepage = "https://heraldprox.io/"
spec.license = { :type => "Apache-2.0", :file => "LICENSE.txt" }
spec.author = { "adamfowleruk" => "[email protected]" }
spec.ios.deployment_target = "9.3"
spec.swift_version = "5"
spec.source = { :git => "https://github.com/theheraldproject/herald-for-ios.git", :tag => "v#{spec.version}" }
spec.source_files = "Herald/Herald/**/*.{h,m,swift}"
pod_target_xcconfig = { "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
user_target_xcconfig = { "EXCLUDED_ARCHS[sdk=iphonesimulator*]" => "arm64" }
end