-
Notifications
You must be signed in to change notification settings - Fork 123
/
REActivityViewController.podspec
41 lines (37 loc) · 1.64 KB
/
REActivityViewController.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
Pod::Spec.new do |s|
s.name = 'REActivityViewController'
s.version = '1.6.7'
s.authors = { 'Roman Efimov' => '[email protected]' }
s.homepage = 'https://github.com/romaonthego/REActivityViewController'
s.summary = 'Open source alternative to UIActivityViewController, highly customizable and compatible with iOS 5.0.'
s.source = { :git => 'https://github.com/romaonthego/REActivityViewController.git',
:tag => '1.6.7' }
s.license = { :type => "MIT", :file => "LICENSE" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'REActivityViewController'
s.public_header_files = 'REActivityViewController/*.h'
s.resources = "REActivityViewController/REActivityViewController.bundle", "REActivityViewController/Localizations/*.lproj"
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'QuartzCore', 'AssetsLibrary', 'MessageUI', 'Twitter'
s.ios.weak_frameworks = 'Social'
s.dependency 'AFNetworking', '~> 1.3'
s.dependency 'Facebook-iOS-SDK', '>= 3.5'
s.dependency 'DEFacebookComposeViewController', '~> 1.0.0'
s.dependency 'REComposeViewController', '~> 2.1.2'
s.dependency 'SFHFKeychainUtils', '~> 0.0.1'
s.dependency 'PocketAPI', '~> 1.0.2'
s.dependency 'AFXAuthClient', '~> 1.0.8'
s.prefix_header_contents = <<-EOS
#import <Availability.h>
#if __IPHONE_OS_VERSION_MIN_REQUIRED
#import <SystemConfiguration/SystemConfiguration.h>
#import <MobileCoreServices/MobileCoreServices.h>
#import <Security/Security.h>
#else
#import <SystemConfiguration/SystemConfiguration.h>
#import <CoreServices/CoreServices.h>
#import <Security/Security.h>
#endif
EOS
end