We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ef9cac5 commit 4b97a9dCopy full SHA for 4b97a9d
1 file changed
example/src/callservice/CallService.ios.ts
@@ -3,6 +3,7 @@
3
import RNCallKeep, {
4
AudioSessionCategoryOption,
5
AudioSessionMode,
6
+ CONSTANTS as CK_CONSTANTS,
7
} from 'react-native-callkeep';
8
9
import { RTCAudioSession } from '@livekit/react-native-webrtc';
@@ -25,6 +26,10 @@ export async function startCallService() {
25
26
27
export async function stopCallService() {
28
RNCallKeep.endCall(uuid);
29
+ RNCallKeep.reportEndCallWithUUID(
30
+ uuid,
31
+ CK_CONSTANTS.END_CALL_REASONS.REMOTE_ENDED
32
+ );
33
}
34
35
export function setupCallService() {
0 commit comments