-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathMFCameraManager.podspec
More file actions
36 lines (25 loc) · 896 Bytes
/
MFCameraManager.podspec
File metadata and controls
36 lines (25 loc) · 896 Bytes
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
Pod::Spec.new do |s|
# 1
s.platform = :ios
s.ios.deployment_target = '8.0'
s.name = "MFCameraManager"
s.summary = "MFCameraManager manage camera session"
s.requires_arc = true
# 2
s.version = "1.1.3"
# 3
s.license = { :type => "MIT", :file => "LICENSE" }
# 4 - Replace with your name and e-mail address
s.author = { "Maryam Fekri" => "maryamfekri.00@gmail.com" }
# 5 - Replace this URL with your own Github page's URL (from the address bar)
s.homepage = "https://github.com/maryamfekri/MFCameraManager"
# 6 - Replace this URL with your own Git URL from "Quick Setup"
s.source = { :git => "https://github.com/maryamfekri/MFCameraManager.git", :tag => "#{s.version}"}
# 7
s.framework = "UIKit"
# 8
s.source_files = "CustomCameraManagerClass/**/*.{swift}"
# 9
#@gmais.resources = "CameraManager/**/*.{png,jpeg,jpg,storyboard,xib}"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '4.0' }
end