We are unable to receive a call from a Push Notification from a "Killed" state

[Problem/Question]
// Detailed description of issue.
We are unable to receive a call from a Push Notification from a “Killed” state. We receive the push notification, but are unable to make the current data persist to our Main Activity in order to accept the call. We are able to receive the call the first time, but subsequent received calls are not able to connect because the data from the previous call persists.

// If problem, please fill out the below. If question, please delete.
[SDK Version]
// What version of the SDK are you using? Android 1.10.6

[Reproduction Steps]
// Please provide reproduction steps and, if possible, code snippets.
override fun onMessageReceived(remoteMessage: RemoteMessage) {
// Not getting messages here? See why this may be: FAQ Firebase
Log.d(TAG, “Firebase From: ${remoteMessage.from}”)

    // Check if message contains a data payload.
    remoteMessage.data.let { data ->
        Log.d(TAG, "Firebase Message data payload: " + remoteMessage.data)

        if (SendBirdCall.handleFirebaseMessageData(data)) {
            val callData = remoteMessage.data["sendbird_call"]
            val callMessage = remoteMessage.data["message"]

            if(!callMessage.isNullOrEmpty()) {
                if (!callMessage.contains("Incoming")) {
                    sendNotification("Konnect Call", callMessage, "0", callData)
                } else {
                    sendNotification("Konnect Call", callMessage, "4", callData)
                }
            } else {

            }
        } else {
            remoteMessage.notification?.let { otherMessage ->
                Log.d(TAG, "Firebase Message Notification Body: ${otherMessage.body}")
                sendNotification(otherMessage.title, otherMessage.body,
                    remoteMessage.data[INTENT_MESSAGE_TYPE],
                    remoteMessage.data[INTENT_EXTRAINFO]
                )
            }
        }
    }
}

[Frequency]
// How frequently is this issue occurring? Often

[Current impact]
// How is this currently impacting your implementation? It’s delaying the release of the SendBird Call feature to our users.