-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathIdentitySdkFacebook.podspec
25 lines (23 loc) · 1.13 KB
/
IdentitySdkFacebook.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
require_relative './version'
Pod::Spec.new do |spec|
spec.name = "IdentitySdkFacebook"
spec.version = $VERSION
spec.summary = "ReachFive IdentitySdkFacebook"
spec.description = <<-DESC
ReachFive Identity Sdk Facebook
DESC
spec.homepage = "https://github.com/ReachFive/identity-ios-sdk"
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/identity-ios-sdk.git", :tag => "#{spec.version}" }
spec.source_files = "IdentitySdkFacebook/IdentitySdkFacebook/Classes/**/*.*"
spec.platform = :ios
spec.ios.deployment_target = $IOS_DEPLOYMENT_TARGET
spec.deprecated = true
spec.deprecated_in_favor_of = "Reach5Facebook"
spec.dependency 'IdentitySdkCore', '~> 6'
spec.dependency 'FBSDKCoreKit', '~> 17.0.0'
spec.dependency 'FBSDKLoginKit', '~> 17.0.0'
end