Skip to content

Commit a920353

Browse files
author
Sylvain Boily
authored
Merge pull request #616 from homersimpsons/patch-1
📝 `didLoadWithEvents` is iOS only, fix anchors
2 parents 4b6a2d1 + 9f8398a commit a920353

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -726,7 +726,7 @@ RNCallKeep.registerAndroidEvents();
726726
| [didPerformSetMutedCallAction](#didPerformSetMutedCallAction) |||
727727
| [didToggleHoldCallAction](#didToggleHoldCallAction) |||
728728
| [didPerformDTMFAction](#didPerformDTMFAction) |||
729-
| [didLoadWithEvents](#didLoadWithEvents) || |
729+
| [didLoadWithEvents](#didLoadWithEvents) || |
730730
| [showIncomingCallUi](#showIncomingCallUi) |||
731731
| [silenceIncomingCall](#silenceIncomingCall) |||
732732
| [checkReachability](#checkReachability) |||
@@ -754,7 +754,7 @@ RNCallKeep.addEventListener('didReceiveStartCallAction', ({ handle, callUUID, na
754754
- `name` (string)
755755
- Name of the callee
756756

757-
### - answerCall
757+
### answerCall
758758

759759
User answer the incoming call
760760

@@ -767,7 +767,7 @@ RNCallKeep.addEventListener('answerCall', ({ callUUID }) => {
767767
- `callUUID` (string)
768768
- The UUID of the call that is to be answered.
769769

770-
### - endCall
770+
### endCall
771771

772772
User finish the call.
773773

@@ -780,7 +780,7 @@ RNCallKeep.addEventListener('endCall', ({ callUUID }) => {
780780
- `callUUID` (string)
781781
- The UUID of the call that is to be ended.
782782

783-
### - didActivateAudioSession
783+
### didActivateAudioSession
784784

785785
The `AudioSession` has been activated by **RNCallKeep**.
786786

@@ -791,7 +791,7 @@ RNCallKeep.addEventListener('didActivateAudioSession', () => {
791791
});
792792
```
793793

794-
### - didDisplayIncomingCall
794+
### didDisplayIncomingCall
795795

796796
Callback for `RNCallKeep.displayIncomingCall`
797797

@@ -821,7 +821,7 @@ RNCallKeep.addEventListener('didDisplayIncomingCall', ({ error, callUUID, handle
821821
- `payload` (object)
822822
- VOIP push payload.
823823

824-
### - didPerformSetMutedCallAction
824+
### didPerformSetMutedCallAction
825825

826826
A call was muted by the system or the user:
827827

@@ -835,7 +835,7 @@ RNCallKeep.addEventListener('didPerformSetMutedCallAction', ({ muted, callUUID }
835835
- `callUUID` (string)
836836
- The UUID of the call.
837837

838-
### - didToggleHoldCallAction
838+
### didToggleHoldCallAction
839839

840840
A call was held or unheld by the current user
841841

@@ -845,7 +845,7 @@ RNCallKeep.addEventListener('didToggleHoldCallAction', ({ hold, callUUID }) => {
845845
});
846846
```
847847

848-
### - didChangeAudioRoute
848+
### didChangeAudioRoute
849849

850850
Triggered when the audio route has been changed.
851851
⚠️ Will send `Speaker` on iOS but `SPEAKER` on Android.
@@ -860,7 +860,7 @@ RNCallKeep.addEventListener('didChangeAudioRoute', ({ output }) => {
860860
- `callUUID` (string)
861861
- The UUID of the call.
862862

863-
### - didPerformDTMFAction
863+
### didPerformDTMFAction
864864

865865
Used type a number on his dialer
866866

@@ -875,7 +875,7 @@ RNCallKeep.addEventListener('didPerformDTMFAction', ({ digits, callUUID }) => {
875875
- `callUUID` (string)
876876
- The UUID of the call.
877877

878-
### - didLoadWithEvents
878+
### didLoadWithEvents
879879

880880
iOS only.
881881

@@ -902,7 +902,7 @@ RNCallKeep.addEventListener('didLoadWithEvents', (events) => {
902902
- `data`: object
903903
Object with data passed together with specific event so it can be handled in the same way like original event, for example `({ callUUID })` for `answerCall` event if `name` is `RNCallKeepPerformAnswerCallAction`
904904

905-
### - showIncomingCallUi
905+
### showIncomingCallUi
906906

907907
_Android only. Self Managed only._
908908

@@ -923,7 +923,7 @@ The following values will match those initially passed to `displayIncomingCall`
923923
- `name` (string)
924924
- Caller Name.
925925

926-
### - silenceIncomingCall
926+
### silenceIncomingCall
927927

928928
_Android only. Self Managed only._
929929

@@ -944,7 +944,7 @@ The following values will match those initially passed to `silenceIncomingCall`
944944
- `name` (string)
945945
- Caller Name.
946946

947-
### - createIncomingConnectionFailed
947+
### createIncomingConnectionFailed
948948

949949
_Android only. Self Managed only._
950950

@@ -965,7 +965,7 @@ The following values will match those initially passed to `silenceIncomingCall`
965965
- `name` (string)
966966
- Caller Name.
967967

968-
### - checkReachability
968+
### checkReachability
969969

970970
_Android only._
971971

0 commit comments

Comments
 (0)