react-native-callkeep icon indicating copy to clipboard operation
react-native-callkeep copied to clipboard

Don't want to show call log in history

Open sidpateldev opened this issue 2 years ago • 6 comments

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

sidpateldev avatar Aug 27 '23 16:08 sidpateldev

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

wilmxre avatar Aug 27 '23 17:08 wilmxre

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

That option is for iOS. Any way to implement it for Android?

nacho004 avatar Sep 28 '23 12:09 nacho004

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

That 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

wilmxre avatar Sep 28 '23 13:09 wilmxre

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

That 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

nacho004 avatar Sep 28 '23 13:09 nacho004