@trustchex/react-native-sdk 1.362.0 → 1.362.1
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.
|
@@ -6,5 +6,6 @@
|
|
|
6
6
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
7
7
|
<uses-permission android:name="android.permission.VIBRATE" />
|
|
8
8
|
<uses-feature android:name="android.hardware.camera" android:required="true" />
|
|
9
|
+
<uses-feature android:name="android.hardware.microphone" android:required="false" />
|
|
9
10
|
<uses-feature android:name="android.hardware.nfc" android:required="false" />
|
|
10
11
|
</manifest>
|
|
@@ -709,6 +709,7 @@ class TrustchexCameraView(context: ThemedReactContext) : FrameLayout(context) {
|
|
|
709
709
|
|
|
710
710
|
activeRecording = videoCapture.output
|
|
711
711
|
.prepareRecording(reactContext, fileOutputOptions)
|
|
712
|
+
.withAudioEnabled()
|
|
712
713
|
.start(ContextCompat.getMainExecutor(reactContext)) { event ->
|
|
713
714
|
when (event) {
|
|
714
715
|
is VideoRecordEvent.Finalize -> {
|
package/lib/module/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const SDK_VERSION = "1.362.
|
|
1
|
+
export declare const SDK_VERSION = "1.362.1";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
package/src/version.ts
CHANGED