react-native-wakeword 1.0.35 → 1.0.37
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/build.gradle +7 -4
- 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 -0
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.aar.sha1 +1 -0
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom +10 -0
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom.md5 +1 -0
- package/android/libs/com/davoice/keyworddetection/1.0.0/keyworddetection-1.0.0.pom.sha1 +1 -0
- package/android/settings.gradle +2 -1
- package/android/src/main/AndroidManifest.xml +5 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Headers/KeyWordDetection-Swift.h +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/KeyWordDetection +0 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/arm64-apple-ios.swiftsourceinfo +0 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.abi.json +5 -6
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.private.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Headers/KeyWordDetection-Swift.h +2 -2
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/KeyWordDetection +0 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo +0 -0
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json +5 -6
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json +5 -6
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +1 -1
- package/ios/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeResources +22 -22
- package/package.json +4 -1
package/android/build.gradle
CHANGED
|
@@ -20,12 +20,15 @@ android {
|
|
|
20
20
|
repositories {
|
|
21
21
|
google()
|
|
22
22
|
mavenCentral()
|
|
23
|
-
flatDir {
|
|
24
|
-
dirs 'src/main/libs' // Update this line
|
|
25
|
-
}
|
|
26
23
|
maven {
|
|
27
24
|
url 'https://maven.pkg.github.com/microsoft/onnxruntime'
|
|
28
25
|
}
|
|
26
|
+
maven {
|
|
27
|
+
url './libs'
|
|
28
|
+
}
|
|
29
|
+
maven {
|
|
30
|
+
url "$projectDir/libs"
|
|
31
|
+
}
|
|
29
32
|
mavenLocal()
|
|
30
33
|
}
|
|
31
34
|
|
|
@@ -33,7 +36,7 @@ dependencies {
|
|
|
33
36
|
implementation "com.facebook.react:react-native:+"
|
|
34
37
|
implementation 'com.microsoft.onnxruntime:onnxruntime-android:1.13.1'
|
|
35
38
|
implementation 'ai.picovoice:android-voice-processor:1.0.2'
|
|
36
|
-
implementation
|
|
39
|
+
implementation 'com.davoice.keyworddetection:keyworddetection:1.0.0'
|
|
37
40
|
// implementation(name: 'MyLibrary-release', ext: 'aar') // Add this line
|
|
38
41
|
}
|
|
39
42
|
|
|
Binary file
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
bb17585e6f4cf75bd791f9940e5fe10f
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
7ac49c589641f454508a0bf43f001568402c1226
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
2
|
+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
3
|
+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0
|
|
4
|
+
http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
5
|
+
<modelVersion>4.0.0</modelVersion>
|
|
6
|
+
<groupId>com.davoice.keyworddetection</groupId>
|
|
7
|
+
<artifactId>keyworddetection</artifactId>
|
|
8
|
+
<version>1.0.0</version>
|
|
9
|
+
<packaging>aar</packaging>
|
|
10
|
+
</project>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fb2793a0cf0ea9acb8320f6c09efdd2b
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
ad1bb18b9131bd76f6f3d88e309ce4872725fc3d
|
package/android/settings.gradle
CHANGED
|
@@ -1 +1,2 @@
|
|
|
1
|
-
include ':
|
|
1
|
+
include ':react-native-wakeword'
|
|
2
|
+
project(':react-native-wakeword').projectDir = new File(rootProject.projectDir, '../node_modules/react-native-wakeword/android')
|
|
@@ -9,5 +9,10 @@
|
|
|
9
9
|
<uses-permission android:name="android.permission.REQUEST_IGNORE_BATTERY_OPTIMIZATIONS"/>
|
|
10
10
|
<uses-permission android:name="android.permission.WAKE_LOCK"/>
|
|
11
11
|
|
|
12
|
+
<!-- Required for microphone access in Android 14 -->
|
|
13
|
+
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
|
14
|
+
<uses-permission android:name="android.permission.CAPTURE_AUDIO_OUTPUT"/>
|
|
15
|
+
<uses-permission android:name="android.permission.CAPTURE_MEDIA_OUTPUT"/>
|
|
16
|
+
|
|
12
17
|
</manifest>
|
|
13
18
|
|
|
@@ -326,7 +326,7 @@ SWIFT_CLASS("_TtC16KeyWordDetection17KeyWordsDetection")
|
|
|
326
326
|
- (BOOL)setKeywordDetectionLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
327
327
|
- (BOOL)setLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
328
328
|
- (void)callBackWithFrame:(NSArray<NSNumber *> * _Nonnull)frame;
|
|
329
|
-
- (BOOL)
|
|
329
|
+
- (BOOL)startListening SWIFT_WARN_UNUSED_RESULT;
|
|
330
330
|
- (void)stopListening;
|
|
331
331
|
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
332
332
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
package/ios/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/KeyWordDetection
CHANGED
|
Binary file
|
|
Binary file
|
|
@@ -989,20 +989,19 @@
|
|
|
989
989
|
"children": [
|
|
990
990
|
{
|
|
991
991
|
"kind": "TypeNominal",
|
|
992
|
-
"name": "
|
|
993
|
-
"printedName": "
|
|
992
|
+
"name": "Bool",
|
|
993
|
+
"printedName": "Swift.Bool",
|
|
994
|
+
"usr": "s:Sb"
|
|
994
995
|
}
|
|
995
996
|
],
|
|
996
997
|
"declKind": "Func",
|
|
997
|
-
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)
|
|
998
|
-
"mangledName": "$
|
|
998
|
+
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)startListening",
|
|
999
|
+
"mangledName": "$s16KeyWordDetection0a5WordsC0C14startListeningSbyF",
|
|
999
1000
|
"moduleName": "KeyWordDetection",
|
|
1000
|
-
"objc_name": "startListeningAndReturnError:",
|
|
1001
1001
|
"declAttributes": [
|
|
1002
1002
|
"AccessControl",
|
|
1003
1003
|
"ObjC"
|
|
1004
1004
|
],
|
|
1005
|
-
"throwing": true,
|
|
1006
1005
|
"funcSelfKind": "NonMutating"
|
|
1007
1006
|
},
|
|
1008
1007
|
{
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -326,7 +326,7 @@ SWIFT_CLASS("_TtC16KeyWordDetection17KeyWordsDetection")
|
|
|
326
326
|
- (BOOL)setKeywordDetectionLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
327
327
|
- (BOOL)setLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
328
328
|
- (void)callBackWithFrame:(NSArray<NSNumber *> * _Nonnull)frame;
|
|
329
|
-
- (BOOL)
|
|
329
|
+
- (BOOL)startListening SWIFT_WARN_UNUSED_RESULT;
|
|
330
330
|
- (void)stopListening;
|
|
331
331
|
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
332
332
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
@@ -680,7 +680,7 @@ SWIFT_CLASS("_TtC16KeyWordDetection17KeyWordsDetection")
|
|
|
680
680
|
- (BOOL)setKeywordDetectionLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
681
681
|
- (BOOL)setLicenseWithLicenseKey:(NSString * _Nonnull)licenseKey SWIFT_WARN_UNUSED_RESULT;
|
|
682
682
|
- (void)callBackWithFrame:(NSArray<NSNumber *> * _Nonnull)frame;
|
|
683
|
-
- (BOOL)
|
|
683
|
+
- (BOOL)startListening SWIFT_WARN_UNUSED_RESULT;
|
|
684
684
|
- (void)stopListening;
|
|
685
685
|
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
|
|
686
686
|
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
|
|
Binary file
|
|
@@ -989,20 +989,19 @@
|
|
|
989
989
|
"children": [
|
|
990
990
|
{
|
|
991
991
|
"kind": "TypeNominal",
|
|
992
|
-
"name": "
|
|
993
|
-
"printedName": "
|
|
992
|
+
"name": "Bool",
|
|
993
|
+
"printedName": "Swift.Bool",
|
|
994
|
+
"usr": "s:Sb"
|
|
994
995
|
}
|
|
995
996
|
],
|
|
996
997
|
"declKind": "Func",
|
|
997
|
-
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)
|
|
998
|
-
"mangledName": "$
|
|
998
|
+
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)startListening",
|
|
999
|
+
"mangledName": "$s16KeyWordDetection0a5WordsC0C14startListeningSbyF",
|
|
999
1000
|
"moduleName": "KeyWordDetection",
|
|
1000
|
-
"objc_name": "startListeningAndReturnError:",
|
|
1001
1001
|
"declAttributes": [
|
|
1002
1002
|
"AccessControl",
|
|
1003
1003
|
"ObjC"
|
|
1004
1004
|
],
|
|
1005
|
-
"throwing": true,
|
|
1006
1005
|
"funcSelfKind": "NonMutating"
|
|
1007
1006
|
},
|
|
1008
1007
|
{
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -989,20 +989,19 @@
|
|
|
989
989
|
"children": [
|
|
990
990
|
{
|
|
991
991
|
"kind": "TypeNominal",
|
|
992
|
-
"name": "
|
|
993
|
-
"printedName": "
|
|
992
|
+
"name": "Bool",
|
|
993
|
+
"printedName": "Swift.Bool",
|
|
994
|
+
"usr": "s:Sb"
|
|
994
995
|
}
|
|
995
996
|
],
|
|
996
997
|
"declKind": "Func",
|
|
997
|
-
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)
|
|
998
|
-
"mangledName": "$
|
|
998
|
+
"usr": "c:@M@KeyWordDetection@objc(cs)KeyWordsDetection(im)startListening",
|
|
999
|
+
"mangledName": "$s16KeyWordDetection0a5WordsC0C14startListeningSbyF",
|
|
999
1000
|
"moduleName": "KeyWordDetection",
|
|
1000
|
-
"objc_name": "startListeningAndReturnError:",
|
|
1001
1001
|
"declAttributes": [
|
|
1002
1002
|
"AccessControl",
|
|
1003
1003
|
"ObjC"
|
|
1004
1004
|
],
|
|
1005
|
-
"throwing": true,
|
|
1006
1005
|
"funcSelfKind": "NonMutating"
|
|
1007
1006
|
},
|
|
1008
1007
|
{
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -33,7 +33,7 @@ import os
|
|
|
33
33
|
@objc public func setKeywordDetectionLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
34
34
|
@objc public func setLicense(licenseKey: Swift.String) -> Swift.Bool
|
|
35
35
|
@objc public func callBack(frame: [Swift.Int16])
|
|
36
|
-
@objc public func startListening()
|
|
36
|
+
@objc public func startListening() -> Swift.Bool
|
|
37
37
|
@objc public func stopListening()
|
|
38
38
|
@objc deinit
|
|
39
39
|
}
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
<dict>
|
|
7
7
|
<key>Headers/KeyWordDetection-Swift.h</key>
|
|
8
8
|
<data>
|
|
9
|
-
|
|
9
|
+
M4V2MnU3UviRElqvhWoTi3dOmz4=
|
|
10
10
|
</data>
|
|
11
11
|
<key>Headers/KeyWordDetection.h</key>
|
|
12
12
|
<data>
|
|
@@ -18,19 +18,19 @@
|
|
|
18
18
|
</data>
|
|
19
19
|
<key>Modules/KeyWordDetection.swiftmodule/Project/arm64-apple-ios-simulator.swiftsourceinfo</key>
|
|
20
20
|
<data>
|
|
21
|
-
|
|
21
|
+
4b2OZGgND+LJZBJ/eMxN1cEqgvg=
|
|
22
22
|
</data>
|
|
23
23
|
<key>Modules/KeyWordDetection.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
24
24
|
<data>
|
|
25
|
-
|
|
25
|
+
SevGFC4o+q3dn2Z/Nc6kCUiBbAg=
|
|
26
26
|
</data>
|
|
27
27
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
28
28
|
<data>
|
|
29
|
-
|
|
29
|
+
N2TzcF86Vts3j+BciZ9d5rJMiMo=
|
|
30
30
|
</data>
|
|
31
31
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
32
32
|
<data>
|
|
33
|
-
|
|
33
|
+
bw/gSxqdVlkBQtMHztX29qsC1fA=
|
|
34
34
|
</data>
|
|
35
35
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
36
36
|
<data>
|
|
@@ -38,19 +38,19 @@
|
|
|
38
38
|
</data>
|
|
39
39
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftinterface</key>
|
|
40
40
|
<data>
|
|
41
|
-
|
|
41
|
+
bw/gSxqdVlkBQtMHztX29qsC1fA=
|
|
42
42
|
</data>
|
|
43
43
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
|
44
44
|
<data>
|
|
45
|
-
|
|
45
|
+
hkLs+MGjd1v+5Bw1btbQRZBNwyk=
|
|
46
46
|
</data>
|
|
47
47
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
48
48
|
<data>
|
|
49
|
-
|
|
49
|
+
N2TzcF86Vts3j+BciZ9d5rJMiMo=
|
|
50
50
|
</data>
|
|
51
51
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
52
52
|
<data>
|
|
53
|
-
|
|
53
|
+
7QdtVLfqSn2jhTAa8ml6jbEced4=
|
|
54
54
|
</data>
|
|
55
55
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
56
56
|
<data>
|
|
@@ -58,11 +58,11 @@
|
|
|
58
58
|
</data>
|
|
59
59
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface</key>
|
|
60
60
|
<data>
|
|
61
|
-
|
|
61
|
+
7QdtVLfqSn2jhTAa8ml6jbEced4=
|
|
62
62
|
</data>
|
|
63
63
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
|
64
64
|
<data>
|
|
65
|
-
|
|
65
|
+
kO4MSb/jqebz2Xxpylkq9ZJ0+AY=
|
|
66
66
|
</data>
|
|
67
67
|
<key>Modules/module.modulemap</key>
|
|
68
68
|
<data>
|
|
@@ -75,7 +75,7 @@
|
|
|
75
75
|
<dict>
|
|
76
76
|
<key>hash2</key>
|
|
77
77
|
<data>
|
|
78
|
-
|
|
78
|
+
pQo8uTsDovnWLzUP3+uw20WZI1VgnpzCGOwTRHpzMCU=
|
|
79
79
|
</data>
|
|
80
80
|
</dict>
|
|
81
81
|
<key>Headers/KeyWordDetection.h</key>
|
|
@@ -89,28 +89,28 @@
|
|
|
89
89
|
<dict>
|
|
90
90
|
<key>hash2</key>
|
|
91
91
|
<data>
|
|
92
|
-
/
|
|
92
|
+
nmg/A2oj2VzDJk/z8YbakQlO2E6u9ktW3zWO0OsVehU=
|
|
93
93
|
</data>
|
|
94
94
|
</dict>
|
|
95
95
|
<key>Modules/KeyWordDetection.swiftmodule/Project/x86_64-apple-ios-simulator.swiftsourceinfo</key>
|
|
96
96
|
<dict>
|
|
97
97
|
<key>hash2</key>
|
|
98
98
|
<data>
|
|
99
|
-
|
|
99
|
+
ZhXKMEGAuBQPcuWmaJkekJ3/cZaGKzOO+Qbl7ooIvks=
|
|
100
100
|
</data>
|
|
101
101
|
</dict>
|
|
102
102
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json</key>
|
|
103
103
|
<dict>
|
|
104
104
|
<key>hash2</key>
|
|
105
105
|
<data>
|
|
106
|
-
|
|
106
|
+
GkpBmrIOLq9YxhCjxAVmpMPeqZjQbKHTUGEDmeQSa3s=
|
|
107
107
|
</data>
|
|
108
108
|
</dict>
|
|
109
109
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface</key>
|
|
110
110
|
<dict>
|
|
111
111
|
<key>hash2</key>
|
|
112
112
|
<data>
|
|
113
|
-
|
|
113
|
+
HiuXxLiT9ellqJ2jJ7OCanNAI6TBvVFhf7/utzhbvF0=
|
|
114
114
|
</data>
|
|
115
115
|
</dict>
|
|
116
116
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftdoc</key>
|
|
@@ -124,28 +124,28 @@
|
|
|
124
124
|
<dict>
|
|
125
125
|
<key>hash2</key>
|
|
126
126
|
<data>
|
|
127
|
-
|
|
127
|
+
HiuXxLiT9ellqJ2jJ7OCanNAI6TBvVFhf7/utzhbvF0=
|
|
128
128
|
</data>
|
|
129
129
|
</dict>
|
|
130
130
|
<key>Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftmodule</key>
|
|
131
131
|
<dict>
|
|
132
132
|
<key>hash2</key>
|
|
133
133
|
<data>
|
|
134
|
-
|
|
134
|
+
uLu8cigg7QDQbFqTVnOSsr1tD7HpBeatT9BE4cYH1kc=
|
|
135
135
|
</data>
|
|
136
136
|
</dict>
|
|
137
137
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json</key>
|
|
138
138
|
<dict>
|
|
139
139
|
<key>hash2</key>
|
|
140
140
|
<data>
|
|
141
|
-
|
|
141
|
+
GkpBmrIOLq9YxhCjxAVmpMPeqZjQbKHTUGEDmeQSa3s=
|
|
142
142
|
</data>
|
|
143
143
|
</dict>
|
|
144
144
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface</key>
|
|
145
145
|
<dict>
|
|
146
146
|
<key>hash2</key>
|
|
147
147
|
<data>
|
|
148
|
-
|
|
148
|
+
8TCCI02oaTHA2EUNHgtRXDseyVk1WpGmOnlJYS73J3Y=
|
|
149
149
|
</data>
|
|
150
150
|
</dict>
|
|
151
151
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftdoc</key>
|
|
@@ -159,14 +159,14 @@
|
|
|
159
159
|
<dict>
|
|
160
160
|
<key>hash2</key>
|
|
161
161
|
<data>
|
|
162
|
-
|
|
162
|
+
8TCCI02oaTHA2EUNHgtRXDseyVk1WpGmOnlJYS73J3Y=
|
|
163
163
|
</data>
|
|
164
164
|
</dict>
|
|
165
165
|
<key>Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftmodule</key>
|
|
166
166
|
<dict>
|
|
167
167
|
<key>hash2</key>
|
|
168
168
|
<data>
|
|
169
|
-
|
|
169
|
+
+wyA42TVFiNwFti6BNRWZuvApefMwfsvNYulXgxuh+Y=
|
|
170
170
|
</data>
|
|
171
171
|
</dict>
|
|
172
172
|
<key>Modules/module.modulemap</key>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-native-wakeword",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.37",
|
|
4
4
|
"description": "Voice/Wake-word detection library for React Native",
|
|
5
5
|
"main": "wakewords/index.js",
|
|
6
6
|
"types": "wakewords/index.d.ts",
|
|
@@ -45,6 +45,9 @@
|
|
|
45
45
|
"Davoice react-native wake word",
|
|
46
46
|
"wake",
|
|
47
47
|
"word",
|
|
48
|
+
"Voice Commands Recognition",
|
|
49
|
+
"lightweight Voice Commands Recognition",
|
|
50
|
+
"customized lightweight Voice Commands Recognition",
|
|
48
51
|
"rn wake word"
|
|
49
52
|
],
|
|
50
53
|
"author": "Davoice.io",
|