-
Notifications
You must be signed in to change notification settings - Fork 65
Expand file tree
/
Copy pathTTOpenInAppActivity.podspec
More file actions
15 lines (15 loc) · 1.15 KB
/
TTOpenInAppActivity.podspec
File metadata and controls
15 lines (15 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
Pod::Spec.new do |s|
s.name = 'TTOpenInAppActivity'
s.version = '1.2'
s.ios.deployment_target = '8.0'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.summary = 'TTOpenInAppActivity is a UIActivity subclass that provides an "Open In ..." action to a UIActivityViewController.'
s.description = 'TTOpenInAppActivity is a UIActivity subclass that provides an "Open In ..." action to a UIActivityViewController. TTOpenInAppActivity uses an UIDocumentInteractionController to present all Apps than can handle the document specified by the activity item. Supported item types are NSURL instances that point to local files and UIImage instances.'
s.homepage = 'https://github.com/honkmaster/TTOpenInAppActivity'
s.authors = { 'Tobias Tiemerding' => 'tobias@tiemerding.com' }
s.source = { :git => 'https://github.com/honkmaster/TTOpenInAppActivity.git', :tag => s.version.to_s }
s.source_files = 'TTOpenInAppActivity/*.{h,m}'
s.resources = 'TTOpenInAppActivity/TTOpenInAppActivity.bundle'
s.frameworks = 'UIKit', 'CoreServices', 'ImageIO', 'Foundation'
s.requires_arc = true
end