forked from verylargebox/VLBCameraView
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathVLBCameraView.podspec
More file actions
20 lines (17 loc) · 885 Bytes
/
VLBCameraView.podspec
File metadata and controls
20 lines (17 loc) · 885 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
Pod::Spec.new do |s|
s.name = "VLBCameraView"
s.version = "2.1"
s.summary = "A UIVIew that shows a live feed of the camera, can be used to take a picture, preview the picture and return a UIImage of that preview."
s.homepage = "https://github.com/JuicyApp/VLBCameraView"
s.license = "MIT"
s.author = { "Markos Charatzas" => "markos@qnoid.com" }
s.source = { :git => "https://github.com/JuicyApp/VLBCameraView.git", :tag => "2.1" }
s.platform = :ios, '6.0'
s.source_files = 'VLBCameraView/**/*.{h,m}'
s.resources = 'VLBCameraView/**/*.xib'
s.prefix_header_file = 'VLBCameraView/VLBCameraView-Prefix.pch'
s.frameworks = 'Foundation', 'UIKit', 'AVFoundation', 'CoreImage', 'CoreMedia', 'CoreGraphics', 'AssetsLibrary'
s.dependency 'CocoaLumberjack', '1.6.2'
s.dependency 'VLBFoundation'
s.requires_arc = true
end