Skip to content

Commit 3e6e1d5

Browse files
0.2.5 (#10)
1 parent 59cc574 commit 3e6e1d5

63 files changed

Lines changed: 20641 additions & 2084 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Example/Demo_pod/Demo_pod.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -354,6 +354,7 @@
354354
CODE_SIGN_STYLE = Automatic;
355355
DEVELOPMENT_TEAM = 6MKXXM927S;
356356
INFOPLIST_FILE = Demo_pod/Info.plist;
357+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
357358
LD_RUNPATH_SEARCH_PATHS = (
358359
"$(inherited)",
359360
"@executable_path/Frameworks",
@@ -374,6 +375,7 @@
374375
CODE_SIGN_STYLE = Automatic;
375376
DEVELOPMENT_TEAM = 6MKXXM927S;
376377
INFOPLIST_FILE = Demo_pod/Info.plist;
378+
IPHONEOS_DEPLOYMENT_TARGET = 13.0;
377379
LD_RUNPATH_SEARCH_PATHS = (
378380
"$(inherited)",
379381
"@executable_path/Frameworks",
Lines changed: 78 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,78 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
<Scheme
3+
LastUpgradeVersion = "1230"
4+
version = "1.3">
5+
<BuildAction
6+
parallelizeBuildables = "YES"
7+
buildImplicitDependencies = "YES">
8+
<BuildActionEntries>
9+
<BuildActionEntry
10+
buildForTesting = "YES"
11+
buildForRunning = "YES"
12+
buildForProfiling = "YES"
13+
buildForArchiving = "YES"
14+
buildForAnalyzing = "YES">
15+
<BuildableReference
16+
BuildableIdentifier = "primary"
17+
BlueprintIdentifier = "3B6C2EE5255E6F3400041CFF"
18+
BuildableName = "Demo_pod.app"
19+
BlueprintName = "Demo_pod"
20+
ReferencedContainer = "container:Demo_pod.xcodeproj">
21+
</BuildableReference>
22+
</BuildActionEntry>
23+
</BuildActionEntries>
24+
</BuildAction>
25+
<TestAction
26+
buildConfiguration = "Debug"
27+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
28+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
29+
shouldUseLaunchSchemeArgsEnv = "YES">
30+
<Testables>
31+
</Testables>
32+
</TestAction>
33+
<LaunchAction
34+
buildConfiguration = "Debug"
35+
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
36+
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
37+
launchStyle = "0"
38+
useCustomWorkingDirectory = "NO"
39+
ignoresPersistentStateOnLaunch = "NO"
40+
debugDocumentVersioning = "YES"
41+
debugServiceExtension = "internal"
42+
allowLocationSimulation = "YES">
43+
<BuildableProductRunnable
44+
runnableDebuggingMode = "0">
45+
<BuildableReference
46+
BuildableIdentifier = "primary"
47+
BlueprintIdentifier = "3B6C2EE5255E6F3400041CFF"
48+
BuildableName = "Demo_pod.app"
49+
BlueprintName = "Demo_pod"
50+
ReferencedContainer = "container:Demo_pod.xcodeproj">
51+
</BuildableReference>
52+
</BuildableProductRunnable>
53+
</LaunchAction>
54+
<ProfileAction
55+
buildConfiguration = "Release"
56+
shouldUseLaunchSchemeArgsEnv = "YES"
57+
savedToolIdentifier = ""
58+
useCustomWorkingDirectory = "NO"
59+
debugDocumentVersioning = "YES">
60+
<BuildableProductRunnable
61+
runnableDebuggingMode = "0">
62+
<BuildableReference
63+
BuildableIdentifier = "primary"
64+
BlueprintIdentifier = "3B6C2EE5255E6F3400041CFF"
65+
BuildableName = "Demo_pod.app"
66+
BlueprintName = "Demo_pod"
67+
ReferencedContainer = "container:Demo_pod.xcodeproj">
68+
</BuildableReference>
69+
</BuildableProductRunnable>
70+
</ProfileAction>
71+
<AnalyzeAction
72+
buildConfiguration = "Debug">
73+
</AnalyzeAction>
74+
<ArchiveAction
75+
buildConfiguration = "Release"
76+
revealArchiveInOrganizer = "YES">
77+
</ArchiveAction>
78+
</Scheme>

Example/Demo_pod/Demo_pod/ViewController.swift

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ class ViewController: UIViewController, HPExternalEvent{
3232

3333
builder.category = "grocery"
3434
builder.voiceFirst = true
35-
builder.TTSEngine = .appleNative
35+
builder.TTSEngine = .reverieTTS
3636
builder.TTSVoiceType = .standard
37-
builder.ASREngine = .appleNative
37+
builder.ASREngine = .reverieASR
3838
}
3939

4040
HaptikCommerceLib.sharedSDK.loadConversation(launchController: self, attributes: attributes)

Example/Demo_pod/Podfile.lock

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
PODS:
2-
- HaptikCommerceLib (0.2.4):
2+
- HaptikCommerceLib (0.2.5):
33
- Starscream (~> 4.0.0)
44
- Starscream (4.0.4)
55

@@ -15,7 +15,7 @@ EXTERNAL SOURCES:
1515
:path: "../../"
1616

1717
SPEC CHECKSUMS:
18-
HaptikCommerceLib: 9df8abe46560b276e6c8c9800a1f93bf81406925
18+
HaptikCommerceLib: 533cb9591a8986d895809d025a1ffb9d8518d99d
1919
Starscream: 5178aed56b316f13fa3bc55694e583d35dd414d9
2020

2121
PODFILE CHECKSUM: e3dc97a398cf52f781f49c8ab59e9895e3eff52d

Example/Demo_pod/Pods/Local Podspecs/HaptikCommerceLib.podspec.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Demo_pod/Pods/Manifest.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Example/Demo_pod/Pods/Pods.xcodeproj/project.pbxproj

Lines changed: 15 additions & 15 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)