-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReach5.podspec
28 lines (25 loc) · 1.12 KB
/
Reach5.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
require_relative './version'
Pod::Spec.new do |spec|
spec.name = "Reach5"
spec.version = $VERSION
spec.summary = "Reachfive Identity SDK"
spec.description = <<-DESC
ReachFive Identity SDK for iOS
DESC
spec.homepage = "https://github.com/ReachFive/reachfive-ios"
spec.license = { :type => "MIT", :file => "LICENSE" }
spec.author = "ReachFive"
spec.authors = { "François" => "[email protected]", "Pierre" => "[email protected]" }
spec.swift_versions = ["5"]
spec.source = { :git => "https://github.com/ReachFive/reachfive-ios.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Core/Classes/**/*.*"
spec.platform = :ios
spec.ios.deployment_target = $IOS_DEPLOYMENT_TARGET
spec.resource_bundle = {
'Reach5' => ['Sources/Core/PrivacyInfo.xcprivacy']
}
spec.dependency 'Alamofire', '~> 5.8'
spec.dependency 'BrightFutures', '~> 8.2.0'
spec.dependency 'CryptoSwift', '~> 1.8'
spec.dependency 'DeviceKit', '~> 5.1'
end