react-native-wakeword 1.0.40 → 1.0.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar +0 -0
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar.md5 +1 -1
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar.sha1 +1 -1
- package/ios/KeyWordRNBridge.mm +1 -1
- package/package.json +1 -1
- package/wakewords/useModel.tsx +1 -1
|
Binary file
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
91857f2139b544f39326588c340c4650 keyworddetection-1.0.0.aar
|
|
@@ -1 +1 @@
|
|
|
1
|
-
|
|
1
|
+
64cfa225482b566dc06647130fbcccdd67b25e8e keyworddetection-1.0.0.aar
|
package/ios/KeyWordRNBridge.mm
CHANGED
|
@@ -130,7 +130,7 @@ RCT_EXPORT_METHOD(startKeywordDetection:(NSString *)instanceId threshold:(float)
|
|
|
130
130
|
KeyWordsDetectionWrapper *wrapper = self.instances[instanceId];
|
|
131
131
|
KeyWordsDetection *instance = wrapper.keyWordsDetection;
|
|
132
132
|
if (instance) {
|
|
133
|
-
BOOL success = [
|
|
133
|
+
BOOL success = [instance startListening];
|
|
134
134
|
if (success == false) {
|
|
135
135
|
reject(@"StartError", [NSString stringWithFormat:@"Failed to start detection"], nil);
|
|
136
136
|
} else {
|
package/package.json
CHANGED
package/wakewords/useModel.tsx
CHANGED
|
@@ -7,7 +7,7 @@ import { Platform } from "react-native";
|
|
|
7
7
|
|
|
8
8
|
type DetectionCallback = (event: any) => void;
|
|
9
9
|
|
|
10
|
-
var license = "
|
|
10
|
+
var license = "MTczNDIxMzYwMDAwMA==-tNV5HJ3NTRQCs5IpOe0imza+2PgPCJLRdzBJmMoJvok=";
|
|
11
11
|
interface keyWordRNBridgeInstanceConfig {
|
|
12
12
|
id: string;
|
|
13
13
|
instance: KeyWordRNBridgeInstance;
|