-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathXYZWaveAndVoice.podspec
More file actions
27 lines (23 loc) · 1.35 KB
/
Copy pathXYZWaveAndVoice.podspec
File metadata and controls
27 lines (23 loc) · 1.35 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
26
27
Pod::Spec.new do |s|
s.name = 'XYZWaveAndVoice'
s.version = '0.1.4'
s.summary = 'A library for voice recognition and voiceprint analysis.'
s.description = <<-DESC
XYZWaveAndVoice is a powerful library that enables voice recognition and voiceprint analysis.
It allows developers to integrate advanced voice biometric features into their iOS applications,
including speaker identification, speech-to-text conversion, and voiceprint-based security features.
This library simplifies the integration of voice processing functionalities, enabling a seamless
user experience for voice-enabled applications.
DESC
s.homepage = 'https://github.com/brandy2015/XYZWaveAndVoice'
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.author = { 'Brando' => 'XYZTech@qq.com' }
s.source = { :git => 'https://github.com/brandy2015/XYZWaveAndVoice.git', :tag => s.version.to_s }
s.source_files = 'XYZWaveAndVoice/Sources/**/*'
s.requires_arc = true
s.frameworks = 'Foundation', 'AVFoundation', 'Speech'
# Specify Swift version
s.swift_versions = ['5.0']
# Set the iOS deployment target to 15.0
s.ios.deployment_target = '15.0'
end