From c053d4b52d7e861f5766282f543335dc5fe4d622 Mon Sep 17 00:00:00 2001 From: markgibaud <markgibaudspam@gmail.com> Date: Wed, 3 Feb 2021 11:47:20 +0000 Subject: [PATCH 1/2] note includesCallsInRecents default in docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 35ed1d30..087eee84 100644 --- a/README.md +++ b/README.md @@ -70,7 +70,7 @@ RNCallKeep.setup(options).then(accepted => {}); - `ringtoneSound`: string (optional) If provided, it will be played when incoming calls received; the system will use the default ringtone if this is not provided - `includesCallsInRecents`: boolean (optional) - If provided, calls will be shown in the recent calls when true and not when false (ios 11 and above) + If provided, calls will be shown in the recent calls when true and not when false (ios 11 and above) (Default: true) - `maximumCallGroups`: string (optional) If provided, the maximum number of call groups supported by this application (Default: 3) - `maximumCallsPerCallGroup`: string (optional) From 37e1285994ca4d13fd056154664eee77f476a298 Mon Sep 17 00:00:00 2001 From: markgibaud <markgibaudspam@gmail.com> Date: Wed, 3 Feb 2021 11:47:29 +0000 Subject: [PATCH 2/2] add includesCallsInRecents to IOptions type --- index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/index.d.ts b/index.d.ts index fa75eb98..a1fb7b84 100644 --- a/index.d.ts +++ b/index.d.ts @@ -23,6 +23,7 @@ declare module 'react-native-callkeep' { maximumCallGroups?: string, maximumCallsPerCallGroup?: string, ringtoneSound?: string, + includesCallsInRecents?: boolean }, android: { alertTitle: string,