I would like to know if it is possible, during a phone call, to merge the current call with another call made from an app developed with Flutter?
During a phone call, I want to be able to add another call, from my app, and merge both calls automatically.
I've been unable to find a flutter package with telephony control.
Regards
I think for
iOS, better to use theCallKit frameworkto handle call management and inAndroid, better to use theAndroid TelephonyManagerandCall APIsto control phone calls programmatically, so let me show you with an example, but be aware this is just a basic example to demonstrate the concept of call merging!!!in
iOSand inObjective-Cand in
Androidwithjava, something like this :now, in
Flutter, you can define a platform channel to communicate with the native code like below for both of them (iOS and Android)and for invoking the
mergeCallsfromFlutterto trigger call merging:Good luck!