react-native-wakeword 1.1.35 → 1.1.39
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/.gradle/8.9/checksums/checksums.lock +0 -0
- package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
- package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
- package/android/.gradle/buildOutputCleanup/cache.properties +1 -1
- 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/android/src/main/AndroidManifest.xml +0 -4
- package/android/src/main/java/com/davoice/DaVoiceUnifiedPackage.java +29 -0
- package/android/src/main/java/com/davoice/keywordspotting/KeyWordRNBridge.java +112 -0
- package/android/src/main/java/com/davoice/speakeridrn/SpeakerIdRNBridge.java +588 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/KeyWordDetection +0 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.abi.json +406 -41
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.private.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/KeyWordDetection +0 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.abi.json +406 -41
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.private.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/arm64-apple-ios-simulator.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.abi.json +406 -41
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.private.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/Modules/KeyWordDetection.swiftmodule/x86_64-apple-ios-simulator.swiftinterface +5 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeDirectory +0 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeRequirements-1 +0 -0
- package/ios/KeyWordRNBridge/KeyWordDetection.xcframework/ios-arm64_x86_64-simulator/KeyWordDetection.framework/_CodeSignature/CodeResources +24 -24
- package/package.json +3 -1
- package/react-native.config.js +10 -0
- package/speakerid/SpeakerIdRNBridge.d.ts +49 -0
- package/speakerid/SpeakerIdRNBridge.js +193 -0
- package/speakerid/index.d.ts +22 -0
- package/speakerid/index.js +28 -0
- package/speakerid/models/speaker_id.dm +0 -0
- package/wakewords/index.d.ts +8 -8
- package/android/src/main/assets/coca_cola_model_28_05052025.dm +0 -0
- package/android/src/main/java/com/davoice/keywordspotting/KeyWordRNBridgePackage.java +0 -25
- package/wakewords/index.d.ts.chat_idiot +0 -2
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -interface-compiler-version 6.1.2
|
|
5
5
|
import AVFAudio
|
|
6
6
|
import AVFoundation
|
|
7
|
+
import Accelerate
|
|
7
8
|
import AudioToolbox
|
|
8
9
|
import CommonCrypto
|
|
9
10
|
import Foundation
|
|
@@ -125,6 +126,10 @@ public class AVAudioWrapper {
|
|
|
125
126
|
@objc public func stopVADListening()
|
|
126
127
|
@objc deinit
|
|
127
128
|
}
|
|
129
|
+
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
130
|
+
public enum AudioPlaybackHook {
|
|
131
|
+
public static var engineScheduleFile: KeyWordDetection.EngineSchedule?
|
|
132
|
+
}
|
|
128
133
|
@_inheritsConvenienceInitializers @objc public class AudioSessionAndDuckingManager : ObjectiveC.NSObject {
|
|
129
134
|
@objc public static let shared: KeyWordDetection.AudioSessionAndDuckingManager
|
|
130
135
|
@objc public func initAudioSessAndDuckManage()
|
|
@@ -4,6 +4,7 @@
|
|
|
4
4
|
// swift-module-flags-ignorable: -no-verify-emitted-module-interface -interface-compiler-version 6.1.2
|
|
5
5
|
import AVFAudio
|
|
6
6
|
import AVFoundation
|
|
7
|
+
import Accelerate
|
|
7
8
|
import AudioToolbox
|
|
8
9
|
import CommonCrypto
|
|
9
10
|
import Foundation
|
|
@@ -125,6 +126,10 @@ public class AVAudioWrapper {
|
|
|
125
126
|
@objc public func stopVADListening()
|
|
126
127
|
@objc deinit
|
|
127
128
|
}
|
|
129
|
+
public typealias EngineSchedule = (_ url: Foundation.URL, _ onDone: @escaping () -> Swift.Void) -> Swift.Bool
|
|
130
|
+
public enum AudioPlaybackHook {
|
|
131
|
+
public static var engineScheduleFile: KeyWordDetection.EngineSchedule?
|
|
132
|
+
}
|
|
128
133
|
@_inheritsConvenienceInitializers @objc public class AudioSessionAndDuckingManager : ObjectiveC.NSObject {
|
|
129
134
|
@objc public static let shared: KeyWordDetection.AudioSessionAndDuckingManager
|
|
130
135
|
@objc public func initAudioSessAndDuckManage()
|