This repository has been archived by the owner on Mar 14, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
FSPicker.podspec
56 lines (46 loc) · 1.86 KB
/
FSPicker.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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Pod::Spec.new do |s|
s.name = 'FSPicker'
s.version = '1.1.8'
s.summary = "Filestack's picker controller implementation."
s.description = <<-DESC
Upload images and files of any kind. Transform them into different styles and formats. Deliver them rapidly and responsively to the world.
DESC
s.homepage = 'https://github.com/filestack/FSPicker'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Filestack' => '[email protected]' }
s.source = {
:git => 'https://github.com/filestack/FSPicker.git',
:tag => "#{s.version}"
}
s.ios.deployment_target = '8.4'
s.osx.deployment_target = '10.9'
s.requires_arc = true
s.ios.public_header_files = %w(
FSPicker/Shared/Models/FSMimeTypes.h
FSPicker/Shared/Models/FSProtocols.h
FSPicker/Platforms/iOS/FSPicker.h
FSPicker/Platforms/iOS/Models/FSConfig.h
FSPicker/Platforms/iOS/Models/FSGoogleServicesManager.h
FSPicker/Platforms/iOS/Models/FSTheme.h
FSPicker/Platforms/iOS/ViewControllers/FSPickerController.h
FSPicker/Platforms/iOS/ViewControllers/FSSaveController.h
)
s.ios.source_files = %w(
FSPicker/Shared/Models/*.{h,m}
FSPicker/Platforms/iOS/*.{h,m}
FSPicker/Platforms/iOS/Views/*.{h,m}
FSPicker/Platforms/iOS/ViewControllers/*.{h,m}
FSPicker/Platforms/iOS/Models/*.{h,m}
FSPicker/Platforms/iOS/API/*.{h,m}
FSPicker/Platforms/iOS/KAProgressLabel/*.{h,m}
FSPicker/Platforms/iOS/FSImageVideoPicker/*.{h,m}
FSPicker/Platforms/iOS/Misc/*.{h,m}
)
s.resources = 'FSPicker/Shared/Resources/fsImages.xcassets'
s.ios.dependency 'Filestack'
s.ios.dependency 'GTMAppAuth'
s.ios.dependency 'GoogleAPIClientForREST'
s.ios.dependency 'GoogleAPIClientForREST/Drive'
s.ios.dependency 'GoogleAPIClientForREST/Gmail'
s.ios.frameworks = 'SystemConfiguration', 'SafariServices'
end