-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathReach5Google.podspec
More file actions
27 lines (24 loc) · 1.12 KB
/
Reach5Google.podspec
File metadata and controls
27 lines (24 loc) · 1.12 KB
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
require_relative './version'
Pod::Spec.new do |spec|
spec.name = "Reach5Google"
spec.version = $VERSION
spec.summary = "Reachfive Identity SDK for Google Login"
spec.description = <<-DESC
Reachfive Identity SDK for iOS integrating with Google Login
DESC
spec.homepage = "https://github.com/ReachFive/reachfive-ios-google"
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-google.git", :tag => "#{spec.version}" }
spec.source_files = "Sources/Classes/**/*.*"
spec.platform = :ios
spec.ios.deployment_target = $IOS_DEPLOYMENT_TARGET
spec.resource_bundle = {
'Reach5Google' => ['Sources/PrivacyInfo.xcprivacy']
}
spec.static_framework = true
spec.dependency 'Reach5', '>= 9.0.0'
spec.dependency 'GoogleSignIn', '~> 7'
end