22 lines
1.1 KiB
Ruby
22 lines
1.1 KiB
Ruby
Pod::Spec.new do |s|
|
|
s.name = 'MijickCamera'
|
|
s.summary = 'Significantly reduces implementation time and effort. Keeps your code clean.'
|
|
s.description = <<-DESC
|
|
Camera made simple. The ultimate camera library that significantly reduces implementation time and effort. Written with and for SwiftUI.
|
|
DESC
|
|
|
|
s.version = '3.0.1'
|
|
s.ios.deployment_target = '14.0'
|
|
s.swift_version = '6.0'
|
|
|
|
s.source_files = 'Sources/**/*.{swift}'
|
|
s.resources = 'Sources/Internal/Assets/*.{xcassets, json}'
|
|
s.dependency 'MijickTimer'
|
|
s.frameworks = 'SwiftUI', 'Foundation', 'AVKit', 'AVFoundation', 'MijickTimer'
|
|
|
|
s.homepage = 'https://github.com/Mijick/Camera.git'
|
|
s.license = { :type => 'Apache License 2.0', :file => 'LICENSE' }
|
|
s.author = { 'Tomasz Kurylik from Mijick' => 'tomasz.kurylik@mijick.com' }
|
|
s.source = { :git => 'https://github.com/Mijick/Camera.git', :tag => s.version.to_s }
|
|
end
|