-
Notifications
You must be signed in to change notification settings - Fork 0
/
Reach5Facebook.podspec
26 lines (24 loc) · 1.15 KB
/
Reach5Facebook.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
require_relative 'version'
Pod::Spec.new do |spec|
spec.name = "Reach5Facebook"
spec.version = $VERSION
spec.summary = "Reachfive Identity SDK for Facebook Login"
spec.description = <<-DESC
Reachfive Identity SDK for iOS integrating with Facebook Login
DESC
spec.homepage = "https://github.com/ReachFive/reachfive-ios-facebook"
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-facebook.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Classes/**/*.*"
spec.platform = :ios
spec.ios.deployment_target = $IOS_DEPLOYMENT_TARGET
spec.resource_bundle = {
'Reach5Facebook' => ['Sources/PrivacyInfo.xcprivacy']
}
spec.dependency 'Reach5', '~> 7.1.5'
spec.dependency 'FBSDKCoreKit', '~> 17.4.0'
spec.dependency 'FBSDKLoginKit', '~> 17.4.0'
end