forked from Canardoux/flutter_sound_core
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathflutter_sound_core.podspec
37 lines (29 loc) · 1.5 KB
/
flutter_sound_core.podspec
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
26
27
28
29
30
31
32
33
34
35
36
37
#
# Be sure to run `pod lib lint flutter_engine.podspec' to ensure this is a
# valid spec before submitting.
#
# Any lines starting with a # are optional, but their use is encouraged
# To learn more about a Podspec see https://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = 'flutter_sound_core'
s.version = '9.2.13'
s.summary = 'Provides simple recorder and player functionalities for iOS platform.'
# This description is used to generate tags and improve search results.
# * Think: What does it do? Why did you write it? What is the focus?
# * Try to keep it short, snappy and to the point.
# * Write the description between the DESC delimiters below.
# * Finally, don't worry about the indent, CocoaPods strips it!
s.description = <<-DESC
This plugin provides simple recorder and player functionalities for both Android and iOS platforms.
This code was originally inside the flutter_sound/ios directory.
It has been extracted to be isolated from Flutter and can be used with other frameworks.
DESC
s.homepage = 'https://github.com/canardoux/flutter_sound'
s.license = { :type => 'MPL2', :file => 'LICENSE' }
s.author = { 'larpoux' => '[email protected]' }
s.source = { :git => 'https://github.com/canardoux/flutter_sound_core.git', :tag => '' + s.version.to_s }
s.ios.deployment_target = '10.0'
s.source_files = 'ios/Classes/*'
s.frameworks = 'AVFoundation', 'MediaPlayer'
end