Metehan Arıman
Metehan Arıman
Same issue, any solutions for this?
Still waiting for this to publish my macos app. :/
I couldn't find any example or information about that. Let say I developed a UI, how can I change this UI with the default Call Screen? I would appreciate if...
I have solved this problem by using another package called "connectycube_flutter_call_kit". Link: https://pub.dev/packages/connectycube_flutter_call_kit By default, this package uses its custom UI which includes the Connectycube logo, but you can change...
@jenniestrongbow I wrote my own method. ------ .Application.kt override fun registerWith(registry: PluginRegistry) { com.connectycube.flutter.connectycube_flutter_call_kit.ConnectycubeFlutterCallKitPlugin().registerWith(registry.registrarFor("com.connectycube.flutter.connectycube_flutter_call_kit.ConnectycubeFlutterCallKitPlugin")); } ----- ConnectycubeFlutterCallKitPlugin.kt fun registerWith(registrar: PluginRegistry.Registrar) { mainActivity = registrar.activity() registrar.addNewIntentListener(this) onAttachedToEngine(registrar.context(), registrar.messenger()) }
@jenniestrongbow Happy to hear you have managed to show the screen you want. Handling accept/reject buttons is the easiest part. ConnectycubeFlutterCallKit.instance.init() method has two parameters; "onCallAccepted" and "onCallRejected". Just write...
@jenniestrongbow Methods like showCallNotification, setOnLockScreenVisibility are static methods, you can't call a static method like ConnectycubeFlutterCallKit.instance.showCallNotification . The static method belongs to a class instead of class instances. Just init...
@sarathvs41 I used Firebase Messaging to handle background messages when app is terminated. Once you trigger "onBackgroundMessage", you can show notification or add data to database. Once user clicks to...