-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathSoundable.podspec
More file actions
25 lines (19 loc) · 1.01 KB
/
Copy pathSoundable.podspec
File metadata and controls
25 lines (19 loc) · 1.01 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
Pod::Spec.new do |s|
s.name = 'Soundable'
s.version = File.read('VERSION')
s.summary = 'Simple sound playback for Swift applications and games'
s.description = <<-DESC
Soundable is a small AVFoundation-based library for playing individual sounds or queues in iOS applications. Playback, grouping, muting, looping, and completion callbacks are managed by a compact Swift API.
DESC
s.homepage = 'https://github.com/lcardevnas/Soundable'
# s.screenshots = 'www.example.com/screenshots_1', 'www.example.com/screenshots_2'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'lcardevnas' => 'me@lcar.dev' }
s.source = { :git => 'https://github.com/lcardevnas/Soundable.git', :tag => s.version.to_s }
s.social_media_url = 'https://x.com/lcardevnas'
s.ios.deployment_target = '13.0'
s.platform = :ios, '13.0'
s.requires_arc = true
s.swift_version = '6.0'
s.source_files = 'Source/*.swift'
end