forked from algolia/voice-overlay-ios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInstantSearchVoiceOverlay.podspec
27 lines (25 loc) · 1.01 KB
/
InstantSearchVoiceOverlay.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 = "InstantSearchVoiceOverlay"
s.module_name = 'InstantSearchVoiceOverlay'
s.version = "1.0.0"
s.summary = "A beautiful voice overlay widget that records the user's voice input"
s.homepage = "https://github.com/algolia/voice-overlay-ios"
s.license = { type: 'MIT', file: 'LICENSE.md' }
s.author = { "Algolia" => "contact@algolia.com" }
s.source = { git: "https://github.com/algolia/voice-overlay-ios.git", tag: s.version.to_s }
s.social_media_url = 'https://twitter.com/algolia'
s.ios.deployment_target = '9.0'
s.requires_arc = true
s.swift_version = '4.2'
# Build settings
# --------------
# NOTE: Deployment targets should be kept in line with the API Client.
s.ios.deployment_target = '9.0'
s.source_files = [
'VoiceOverlay/**/*.{swift}'
]
s.resources = [
"VoiceOverlay/Views/Assets.xcassets",
"VoiceOverlay/Sound/*"
]
end