forked from finn-no/Finjinon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFinjinon.podspec
23 lines (23 loc) · 1.21 KB
/
Finjinon.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 = "Finjinon"
s.version = "4.1.3"
s.summary = "Custom iOS camera optimized for taking a sequence of photos quickly and/or selecting from an image picker"
s.description = <<-DESC
Finjinon is a custom AVFoundation based camera UI, focused on quickly adding several photos. Selecting existing photos from the camera roll is supported through a pluggable interface, a default implementation using UIImagePickerController is provided.
DESC
s.author = "FINN.no AS"
s.homepage = "https://github.com/finn-no/Finjinon"
s.screenshots = "https://raw.githubusercontent.com/finn-no/Finjinon/master/Screenshots/screenshot.png"
s.license = "MIT"
s.social_media_url = "http://twitter.com/finn_tech"
s.platform = :ios, '11.2'
s.swift_version = '5.0'
s.source = { :git => "https://github.com/finn-no/Finjinon.git", :tag => s.version }
s.resources = 'Sources/Resources/*.{xcassets,lproj}'
s.resource_bundles = {
'Finjinon' => ['Sources/Resources/*.xcassets', 'Sources/Resources/*.lproj']
}
s.requires_arc = true
s.source_files = "Sources/**/*.swift"
s.frameworks = "Foundation"
end