Don't want to show call log in history
Bug report
-
[ ] I've checked the example to reproduce the issue.
-
Reproduced on:
-
[ ] Android
-
[ ] iOS
Description
Steps to Reproduce
Versions
- Callkeep:
- React Native:
- iOS:
- Android:
- Phone model:
Logs
Paste here
you didn't mention for which os or if it is self managed or not, but in the setup you have the includesCallsInRecents option for this
you didn't mention for which os or if it is self managed or not, but in the setup you have the
includesCallsInRecentsoption for this
That option is for iOS. Any way to implement it for Android?
you didn't mention for which os or if it is self managed or not, but in the setup you have the
includesCallsInRecentsoption for thisThat option is for iOS. Any way to implement it for Android?
i am using self managed mode, this is my setup config:
android: {
selfManaged: true,
alertTitle: 'Permissions required',
alertDescription: 'This application needs to access your phone accounts',
cancelButton: 'Cancel',
okButton: 'ok',
additionalPermissions: [],
imageName: '../../assets/icons/app-icon.png',
// Required to get audio in background when using Android 11
foregroundService: {
channelId: 'CallKeepService',
channelName: APP_NAME,
notificationTitle: 'App running in background',
notificationIcon: '../../assets/icons/app-icon.png',
imageName: '../../assets/icons/app-icon.png',
},
},
ios: {
appName: APP_NAME,
maximumCallGroups: '1',
maximumCallsPerCallGroup: '1',
includesCallsInRecents: false,
supportsVideo: true,
},
};
and it doesn't show it in recents for android
you didn't mention for which os or if it is self managed or not, but in the setup you have the
includesCallsInRecentsoption for thisThat option is for iOS. Any way to implement it for Android?
i am using self managed mode, this is my setup config:
android: { selfManaged: true, alertTitle: 'Permissions required', alertDescription: 'This application needs to access your phone accounts', cancelButton: 'Cancel', okButton: 'ok', additionalPermissions: [], imageName: '../../assets/icons/app-icon.png', // Required to get audio in background when using Android 11 foregroundService: { channelId: 'CallKeepService', channelName: APP_NAME, notificationTitle: 'App running in background', notificationIcon: '../../assets/icons/app-icon.png', imageName: '../../assets/icons/app-icon.png', }, }, ios: { appName: APP_NAME, maximumCallGroups: '1', maximumCallsPerCallGroup: '1', includesCallsInRecents: false, supportsVideo: true, }, };and it doesn't show it in recents for android
Used selfManaged and not listed in recent calls (Android). Thank you @wilmxre