-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathTSVoiceConverter.podspec
More file actions
22 lines (21 loc) · 975 Bytes
/
TSVoiceConverter.podspec
File metadata and controls
22 lines (21 loc) · 975 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#
# Be sure to run `pod lib lint TSVoiceConverter.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 http://guides.cocoapods.org/syntax/podspec.html
#
Pod::Spec.new do |s|
s.name = "TSVoiceConverter"
s.version = "0.1.8"
s.summary = "A Swift VoiceConverter between AMR format and WAV format"
s.homepage = "https://github.com/hilen/TSVoiceConverter"
s.license = 'MIT'
s.author = { "Hilen" => "hilenkz@gmail.com" }
s.source = { :git => "https://github.com/hilen/TSVoiceConverter.git", :tag => s.version.to_s }
s.platform = :ios, '13.0'
s.requires_arc = true
s.source_files = ['Sources/**/*.{h,mm}','Sources/*.{h,mm}','Sources/**/TSVoiceConverter.swift']
s.vendored_frameworks = "Sources/**/*.xcframework"
s.pod_target_xcconfig = { 'SWIFT_VERSION' => '5.0' }
end