-
-
Notifications
You must be signed in to change notification settings - Fork 121
/
Copy pathFDTake.podspec
23 lines (23 loc) · 891 Bytes
/
FDTake.podspec
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
Pod::Spec.new do |s|
s.name = "FDTake"
s.version = "3.0.0"
s.summary = "Easily take a photo or video or choose from library"
s.description = <<-DESC
`FDTake` helps you quickly to have the user take or choose an existing photo or video.
DESC
s.homepage = "https://github.com/fulldecent/FDTake"
s.screenshots = "https://i.imgur.com/SpSJzmS.png"
s.license = "MIT"
s.author = { "William Entriken" => "github.com@phor.net" }
s.source = { :git => "https://github.com/fulldecent/FDTake.git", :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/fulldecent'
s.platform = :ios, '10.0'
s.requires_arc = true
s.swift_version = '5.0'
s.source_files = 'Sources/FDTake/**/*.swift'
s.resource_bundles = {
'Resources' => [
'Sources/FDTake/Resources/*.lproj'
]
}
end