-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathAimybox.podspec
56 lines (49 loc) · 2.24 KB
/
Aimybox.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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
Pod::Spec.new do |s|
s.name = 'Aimybox'
s.version = '0.0.26'
s.summary = 'The only solution if you need to embed your own intelligent voice assistant into your existing application or device.'
s.description = 'Aimybox is a world-first open source independent voice assistant SDK and voice skills marketplace platform that enables you to create your own voice assistant or embed it into any application or device like robots or Raspberry Pi.'
s.homepage = 'https://github.com/just-ai/aimybox-ios-sdk.git'
s.screenshots = 'https://bit.ly/2pOomUs'
s.license = { :type => 'APACHE 2.0', :file => 'LICENSE' }
s.author = { 'vasolutions' => '[email protected]' }
s.source = { :git => 'https://github.com/just-ai/aimybox-ios-sdk.git', :tag => s.version.to_s }
s.social_media_url = 'https://twitter.com/aimybox'
s.ios.deployment_target = '12.0'
s.swift_versions = '5.2'
s.default_subspecs = 'Core'
s.subspec 'Core' do |sp|
sp.source_files = 'AimyboxCore/**/*.{swift}', 'AimyboxCore/**/**/*.{swift}', 'AimyboxCore/**/**/**/*.{swift}'
end
s.subspec 'Utils' do |sp|
sp.source_files = 'Utils/**/*.{swift}'
sp.exclude_files = 'Utils/**/*.{plist}'
end
s.subspec 'AimyboxDialogAPI' do |sp|
sp.source_files = 'Components/AimyboxDialogAPI/Sources/*.{swift}'
sp.dependency 'Aimybox/Core'
sp.dependency 'Aimybox/Utils'
end
s.subspec 'AVTextToSpeech' do |sp|
sp.source_files = 'Components/AVTextToSpeech/Sources/*.{swift}'
sp.dependency 'Aimybox/Core'
sp.dependency 'Aimybox/Utils'
end
s.subspec 'SFSpeechToText' do |sp|
sp.source_files = 'Components/SFSpeechToText/Sources/*.{swift}'
sp.dependency 'Aimybox/Core'
sp.dependency 'Aimybox/Utils'
end
s.subspec 'YandexSpeechKit' do |sp|
sp.source_files = 'Components/YandexSpeechKit/Sources/**/*.{swift}', 'Components/YandexSpeechKit/Sources/**/**/*.{swift}', 'Components/YandexSpeechKit/Sources/**/**/**/*.{swift}'
sp.exclude_files = 'Components/YandexSpeechKit/Sources/*.{plist}'
sp.dependency 'Aimybox/Core'
sp.dependency 'Aimybox/Utils'
sp.dependency 'gRPC-Swift'
sp.dependency 'SwiftNIO'
sp.dependency 'SwiftNIOCore'
sp.dependency 'SwiftNIOTLS'
sp.dependency 'SwiftNIOSSL'
sp.dependency 'SwiftProtobuf'
end
end