@@ -112,10 +112,10 @@ RNCallKeep.displayIncomingCall(uuid, handle);
112
112
### startCall
113
113
114
114
When you make an outgoing call, tell the device that a call is occurring.
115
- _ This feature is available only on iOs ._
115
+ _ This feature is available only on iOS ._
116
116
117
117
``` js
118
- RNCallKeep .startCall (uuid, number );
118
+ RNCallKeep .startCall (uuid, handle, handleType, hasVideo, contactIdentifier );
119
119
```
120
120
121
121
- _ uuid_ : string
@@ -156,7 +156,7 @@ RNCallKeep.setCurrentCallActive();
156
156
### setMutedCall
157
157
158
158
Switch the mic on/off.
159
- _ This feature is available only on iOs ._
159
+ _ This feature is available only on iOS ._
160
160
161
161
``` js
162
162
RNCallKeep .setMutedCall (uuid, true );
@@ -169,7 +169,7 @@ RNCallKeep.setMutedCall(uuid, true);
169
169
### checkIfBusy
170
170
171
171
Checks if there are any active calls on the device and returns a promise with a boolean value (` true ` if there're active calls, ` false ` otherwise).
172
- _ This feature is available only on iOs ._
172
+ _ This feature is available only on iOS ._
173
173
174
174
``` js
175
175
RNCallKeep .checkIfBusy ();
@@ -178,7 +178,7 @@ RNCallKeep.checkIfBusy();
178
178
### checkSpeaker
179
179
180
180
Checks if the device speaker is on and returns a promise with a boolean value (` true ` if speaker is on, ` false ` otherwise).
181
- _ This feature is available only on iOs ._
181
+ _ This feature is available only on iOS ._
182
182
183
183
``` js
184
184
RNCallKeep .checkSpeaker ();
0 commit comments