forked from google/GTMAppAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGTMAppAuth.podspec
38 lines (29 loc) · 1.24 KB
/
GTMAppAuth.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
29
30
31
32
33
34
35
36
37
38
Pod::Spec.new do |s|
s.name = "GTMAppAuth"
s.version = "2.0.0"
s.summary = "Authorize GTM Session Fetcher requests with AppAuth via GTMAppAuth"
s.description = <<-DESC
GTMAppAuth enables you to use AppAuth with the Google Toolbox for Mac - Session
Fetcher and Google APIs Client Library for Objective-C For REST libraries by
providing an implementation of GTMFetcherAuthorizationProtocol for authorizing
requests with AppAuth.
DESC
s.homepage = "https://github.com/google/GTMAppAuth"
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.author = "Google LLC"
s.source = { :git => "https://github.com/google/GTMAppAuth.git", :tag => s.version }
s.prefix_header_file = false
s.source_files = "GTMAppAuth/Sources/**/*.{h,m}",
s.public_header_files = "GTMAppAuth/Sources/Public/GTMAppAuth/*.h"
s.requires_arc = true
s.ios.deployment_target = "10.0"
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
s.pod_target_xcconfig = {
'HEADER_SEARCH_PATHS' => '"${PODS_TARGET_SRCROOT}"'
}
s.framework = 'Security'
s.dependency 'GTMSessionFetcher/Core', '>= 1.5', '< 4.0'
s.dependency 'AppAuth/Core', '~> 1.6'
end