-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathReach5.podspec
More file actions
23 lines (21 loc) · 974 Bytes
/
Reach5.podspec
File metadata and controls
23 lines (21 loc) · 974 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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" => "francois.devemy@reach5.co", "Pierre" => "pierre.bar@reach5.co" }
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']
}
end