-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathVolumeButtons.podspec
More file actions
18 lines (18 loc) · 951 Bytes
/
VolumeButtons.podspec
File metadata and controls
18 lines (18 loc) · 951 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
Pod::Spec.new do |s|
s.name = 'VolumeButtons'
s.version = '1.0.0'
s.summary = 'VolumeButtons provides interface for handle clicks on hardware volume buttons on iOS devices.'
s.description = <<-DESC
VolumeButtons provides interface for handle clicks on hardware volume buttons on iOS devices.
Volume button presses don't affect system audio level.
This library is suitable for make photos in camera apps.
DESC
s.homepage = 'https://github.com/RedMadRobot/VolumeButtons'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Anton Glezman' => 'a.glezman@redmadrobot.com' }
s.source = { :git => 'https://github.com/RedMadRobot/VolumeButtons.git', :tag => s.version.to_s }
s.ios.deployment_target = '11.0'
s.swift_version = '5.0'
s.source_files = 'VolumeButtons/Classes/**/*'
s.frameworks = 'UIKit', 'AVFoundation'
end