omikit-plugin 3.2.65 → 3.2.67
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/README.md +539 -340
- package/android/build.gradle +1 -1
- package/android/gradle.properties +1 -1
- package/ios/CallProcess/CallManager.swift +2 -4
- package/omikit-plugin.podspec +1 -1
- package/package.json +1 -1
package/android/build.gradle
CHANGED
|
@@ -120,7 +120,7 @@ dependencies {
|
|
|
120
120
|
// use for OMISDK
|
|
121
121
|
implementation("androidx.work:work-runtime:2.8.1")
|
|
122
122
|
implementation "androidx.security:security-crypto:1.1.0-alpha06"
|
|
123
|
-
api 'vn.vihat.omicall:omi-sdk:2.3.
|
|
123
|
+
api 'vn.vihat.omicall:omi-sdk:2.3.19'
|
|
124
124
|
|
|
125
125
|
implementation "com.facebook.react:react-native:+" // From node_modules
|
|
126
126
|
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
|
|
@@ -42,7 +42,6 @@ class CallManager {
|
|
|
42
42
|
var result = false;
|
|
43
43
|
do {
|
|
44
44
|
if let callInfo = self.omiLib.getCurrentConfirmCall() {
|
|
45
|
-
dump(callInfo)
|
|
46
45
|
if callInfo.callState != .disconnected {
|
|
47
46
|
callInfo.blindTransferCall(withNumber: phoneNumber);
|
|
48
47
|
result = true
|
|
@@ -51,7 +50,6 @@ class CallManager {
|
|
|
51
50
|
} catch let error {
|
|
52
51
|
print("ERROR_WHEN_TRANSFER_CALL_IOS: ", error)
|
|
53
52
|
}
|
|
54
|
-
print("calllZiii 2 ==> \(result)")
|
|
55
53
|
return result
|
|
56
54
|
}
|
|
57
55
|
|
|
@@ -335,7 +333,7 @@ class CallManager {
|
|
|
335
333
|
if (videoManager == nil && call.isVideo) {
|
|
336
334
|
videoManager = OMIVideoViewManager.init()
|
|
337
335
|
}
|
|
338
|
-
isSpeaker = call.
|
|
336
|
+
isSpeaker = call.speaker
|
|
339
337
|
lastStatusCall = "answered"
|
|
340
338
|
OmikitPlugin.instance.sendMuteStatus()
|
|
341
339
|
break
|
|
@@ -517,7 +515,7 @@ class CallManager {
|
|
|
517
515
|
func getCurrentAudio() -> [[String: String]] {
|
|
518
516
|
return OmiClient.getCurrentAudio()
|
|
519
517
|
}
|
|
520
|
-
|
|
518
|
+
|
|
521
519
|
//video call
|
|
522
520
|
func toggleCamera() {
|
|
523
521
|
if let videoManager = videoManager {
|
package/omikit-plugin.podspec
CHANGED