forked from google/GTMAppAuth
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathGTMAppAuth.podspec
More file actions
48 lines (36 loc) · 1.72 KB
/
Copy pathGTMAppAuth.podspec
File metadata and controls
48 lines (36 loc) · 1.72 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
Pod::Spec.new do |s|
s.name = "GTMAppAuth"
s.version = "1.2.2"
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}",
"GTMAppAuth/Sources/Public/GTMAppAuth/*.h"
s.public_header_files = "GTMAppAuth/Sources/Public/GTMAppAuth/*.h"
s.requires_arc = true
s.ios.source_files = "GTMAppAuth/Sources/GTMOAuth2KeychainCompatibility/*.{h,m}",
"GTMAppAuth/Sources/iOS/GTMKeychain_iOS.m"
s.ios.deployment_target = "9.0"
s.osx.source_files = "GTMAppAuth/Sources/GTMOAuth2KeychainCompatibility/*.{h,m}",
"GTMAppAuth/Sources/macOS/GTMKeychain_macOS.m"
s.osx.deployment_target = '10.11'
s.tvos.source_files = "GTMAppAuth/Sources/iOS/GTMKeychain_iOS.m"
s.tvos.deployment_target = '9.0'
s.watchos.source_files = "GTMAppAuth/Sources/iOS/GTMKeychain_iOS.m"
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'
s.dependency 'AppAuth/Core', '~> 1.4'
end