-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathVolumizer.podspec
More file actions
23 lines (23 loc) · 1.1 KB
/
Volumizer.podspec
File metadata and controls
23 lines (23 loc) · 1.1 KB
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 = 'Volumizer'
s.version = '1.1.2'
s.platform = :ios, "10.0"
s.license = { :type => "MIT", :file => "license" }
s.summary = 'Volumizer replaces the system volume popup with a simple progress bar.'
s.homepage = 'https://github.com/fxwx23/Volumizer'
s.author = { 'Fumitaka Watanabe' => 'fxwx23@gmail.com' }
s.social_media_url = "https://twitter.com/fxwx23"
s.source = { :git => 'https://github.com/fxwx23/Volumizer.git', :tag => "v#{s.version}" }
s.description = <<-DESC
-Volumizer replaces the system volume popup with a simple progress bar.
-Features
-1. Swift5
-2. Hide the system volume HUD typically displayed on volume button presses
-3. Show a simple progress bar like Instagram's iOS app does
-4. Well easy to customize appearance
-5. Only support portrait mode
DESC
s.source_files = 'Volumizer/*.{h,m,swift}'
s.framework = 'MediaPlayer', 'AVFoundation'
s.requires_arc = true
end