forked from yangyubo/OWActivityViewController
-
Notifications
You must be signed in to change notification settings - Fork 0
/
OWActivityViewController.podspec
33 lines (29 loc) · 1.32 KB
/
OWActivityViewController.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
Pod::Spec.new do |s|
s.name = 'OWActivityViewController'
s.version = '1.5'
s.authors = { 'Roman Efimov' => '[email protected]', 'Brant Young' => '[email protected]' }
s.homepage = 'https://github.com/brantyoung/OWActivityViewController'
s.summary = 'Open source alternative to UIActivityViewController, highly customizable and compatible with iOS 5.0.'
s.source = { :git => 'https://github.com/brantyoung/OWActivityViewController.git' }
s.license = { :type => "MIT", :file => "LICENSE" }
s.platform = :ios, '5.0'
s.requires_arc = true
s.source_files = 'OWActivityViewController'
s.public_header_files = 'OWActivityViewController/*.h'
s.resources = "OWActivityViewController/OWActivityViewController.bundle", "OWActivityViewController/Localizations/*.lproj"
s.ios.deployment_target = '5.0'
s.ios.frameworks = 'QuartzCore', 'AssetsLibrary', 'MessageUI', 'Twitter'
s.ios.weak_frameworks = 'Social'
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