forked from alan-ai/alan-sdk-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAlanSDK-iOS.podspec
27 lines (22 loc) · 1.25 KB
/
AlanSDK-iOS.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
Pod::Spec.new do |s|
s.name = 'AlanSDK-iOS'
s.version = '2.11.0'
s.summary = 'Conversational Voice AI Platform.'
s.description = <<-DESC
The Alan Voice AI Platform provides a framework for fast and easy development and deployment voice experiences for your application.
Alan voice enables any application, on any platform.
DESC
s.homepage = 'https://github.com/alan-ai/alan-sdk-ios'
s.source = { :git => 'https://github.com/alan-ai/alan-sdk-ios.git', :tag => s.version }
s.author = { 'Alan AI, Inc' => '[email protected]' }
s.license = { :type => 'MIT', :file => 'LICENSE' }
s.social_media_url = 'https://twitter.com/alanvoiceai'
s.frameworks = 'UIKit', 'CoreVideo', 'CoreMedia', 'CoreImage', 'CoreImage', 'CoreAudio', 'AVFoundation', 'AudioToolbox', 'VideoToolbox', 'Accelerate', 'MediaPlayer'
#s.source_files = 'AlanSDK-iOS/Classes/**/*'
#s.public_header_files = 'AlanSDK-iOS/Classes/**/*.h', 'AlanSDK/Frameworks/AlanSDK.framework/Headers/*'
s.ios.deployment_target = '11.0'
s.ios.vendored_frameworks = 'AlanSDK-iOS/Frameworks/AlanSDK.framework'
s.xcconfig = {
'ENABLE_BITCODE' => 'NO'
}
end