forked from CocoaPods/Specs
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
16 changes: 16 additions & 0 deletions
16
JPSVolumeButtonHandler/0.0.1/JPSVolumeButtonHandler.podspec
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
Pod::Spec.new do |s| | ||
s.name = 'JPSVolumeButtonHandler' | ||
s.version = '0.0.1' | ||
s.platform = :ios, "7.0" | ||
s.license = 'MIT' | ||
s.summary = 'JPSVolumeButtonHandler provides an easy block interface to hardware volume buttons on iOS devices. Perfect for camera apps!' | ||
s.homepage = 'https://github.com/jpsim/JPSVolumeButtonHandler' | ||
s.author = { 'JP Simard' => '[email protected]' } | ||
s.source = { :git => 'https://github.com/jpsim/JPSVolumeButtonHandler.git', :tag => s.version.to_s } | ||
|
||
s.description = 'JPSVolumeButtonHandler provides an easy block interface to hardware volume buttons on iOS devices. Perfect for camera apps! Features:\n* Run blocks whenever a hardware volume button is pressed\n* Volume button presses don\'t affect system audio\n* Hide the HUD typically displayed on volume button presses\n* Works even when the system audio level is at its maximum or minimum, even when muted' | ||
|
||
s.source_files = 'JPSVolumeButtonHandler/*.{h,m}' | ||
s.framework = 'MediaPlayer', 'AVFoundation' | ||
s.requires_arc = true | ||
end |