-
Notifications
You must be signed in to change notification settings - Fork 0
/
NearBee.podspec
30 lines (21 loc) · 1.03 KB
/
NearBee.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
29
30
Pod::Spec.new do |s|
s.name = 'NearBee'
s.swift_version = '5.3'
s.version = '3.2.12'
s.summary = 'iOS library for Eddystone beacons'
s.homepage = 'https://github.com/Beaconstac/NearBee-iOS-SDK'
s.authors = { 'MobStac Inc.' => 'support@beaconstac.com' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/Beaconstac/NearBee-iOS-SDK.git', :tag => "v#{s.version}" }
s.xcconfig = { 'LIBRARY_SEARCH_PATHS' => '$(TOOLCHAIN_DIR)/usr/lib/swift/$(PLATFORM_NAME)' }
s.pod_target_xcconfig = {
'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64'
}
s.user_target_xcconfig = { 'EXCLUDED_ARCHS[sdk=iphonesimulator*]' => 'arm64' }
s.vendored_frameworks = 'NearBee/NearBee.framework'
s.dependency 'EddystoneScanner'
s.dependency 'Socket.IO-Client-Swift', '15.2.0'
s.frameworks = 'CoreData', 'SystemConfiguration', 'CoreBluetooth', 'CoreLocation', 'UserNotifications', 'SafariServices'
s.requires_arc = true
s.ios.deployment_target = "10.0"
end