2

I am an Android beginner, trying to setup Android code for my Cordova app.

My code works fine. No error whatsoever. All Logs showing but the Incoming call just doesn't show.

I have connected the ConnectionService to FirebaseMessaging service to fire incoming call on receiving a data push notification.

I receive the notification and all of the code runs successfully. Still no incoming call UI. Tried on Android 9 and 10 devices.

MyConnectionService.kt

    @RequiresApi(Build.VERSION_CODES.M)
class MyConnectionService : ConnectionService() {
    override fun onCreateOutgoingConnection(connectionManagerPhoneAccount: PhoneAccountHandle?, request: ConnectionRequest?): Connection {
    Log.i("CallConnectionService", "onCreateOutgoingConnection")
    val conn = VoipConnection(applicationContext)
    conn.setAddress(request!!.address, PRESENTATION_ALLOWED)
    conn.setInitializing()
    //conn.videoProvider = MyVideoProvider()
    conn.setActive()
    return conn
}

override fun onCreateIncomingConnection(connectionManagerPhoneAccount: PhoneAccountHandle?, request: ConnectionRequest?): Connection {
    Log.i("CallConnectionService", "onCreateIncomingConnection")
    val conn = VoipConnection(applicationContext)
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N_MR1) {
        conn.connectionProperties = Connection.PROPERTY_SELF_MANAGED
    }
    conn.setCallerDisplayName("test call", TelecomManager.PRESENTATION_ALLOWED)
    //conn.setAddress(request!!.address, PRESENTATION_ALLOWED)
    conn.setRinging()
    conn.setInitializing()
    conn.setActive()
    return conn
}

override fun onCreateIncomingConnectionFailed(connectionManagerPhoneAccount: PhoneAccountHandle?, request: ConnectionRequest?) {
    super.onCreateIncomingConnectionFailed(connectionManagerPhoneAccount, request)
    Log.i("CallConnectionService", "create outgoing call failed ")
}

override fun onCreateOutgoingConnectionFailed(connectionManagerPhoneAccount: PhoneAccountHandle?, request: ConnectionRequest?) {
    super.onCreateOutgoingConnectionFailed(connectionManagerPhoneAccount, request)
    Log.i("CallConnectionService", "create outgoing call failed")
}
}

VoipConnection.kt

@RequiresApi(Build.VERSION_CODES.M)
class VoipConnection(ctx:Context) : Connection() {

    var ctx:Context = ctx
    val TAG = "CallConnection"

    override fun onShowIncomingCallUi() {
        Log.i(TAG, "onShowIncomingCallUi")
    }

FirebaseMessagingService.kt

class MyFirebaseMessagingService : FirebaseMessagingService() {

@RequiresApi(Build.VERSION_CODES.M)
override fun onMessageReceived(remoteMessage: RemoteMessage) {

    Log.d(TAG, "From: " + remoteMessage.from)

    try {
        val callManager = CallManager(this)
        val telecomManager = this.getSystemService(Context.TELECOM_SERVICE) as TelecomManager
        val componentName = ComponentName(this, MyConnectionService::class.java)
        val phoneAccountHandle = PhoneAccountHandle(componentName,"Admin")

        val callInfo = Bundle()
        callInfo.putString("from", "tester")
        telecomManager.addNewIncomingCall(phoneAccountHandle, callInfo)
    }
    catch (e: Exception) {
        Log.e("error", e.toString())
    }

}


override fun onNewToken(s: String) {
    Log.d(TAG, "Refreshed token: $s")
}

}

CallManger.kt

   @RequiresApi(Build.VERSION_CODES.M)
class CallManager(context: Context) {
    val telecomManager: TelecomManager
    var phoneAccountHandle: PhoneAccountHandle
    var context: Context
    val number = "3924823202"

init {
    telecomManager = context.getSystemService(Context.TELECOM_SERVICE) as TelecomManager
    this.context = context
    val componentName = ComponentName(this.context, MyConnectionService::class.java)
    phoneAccountHandle = PhoneAccountHandle(componentName, "Admin")
    val phoneAccount = PhoneAccount.builder(phoneAccountHandle, "Admin")
        .setCapabilities(PhoneAccount.CAPABILITY_SELF_MANAGED).build()


    telecomManager.registerPhoneAccount(phoneAccount)
    val intent = Intent()
    intent.component = ComponentName(
        "com.android.server.telecom",
        "com.android.server.telecom.settings.EnableAccountPreferenceActivity"
    )
    intent.flags = Intent.FLAG_ACTIVITY_CLEAR_TOP
    Log.d("mainactivity", "init TelecomManager all well");

}

}
}
halfer
  • 19,824
  • 17
  • 99
  • 186
Lakshay Dulani
  • 1,710
  • 2
  • 18
  • 45

2 Answers2

0

I know that this is late, but I am also working on it right now and I am also stumbling over a lot of issues. You could try adding callInfo.putParcelable(TelecomManager.EXTRA_PHONE_ACCOUNT_HANDLE, phoneAccountHandler) before calling addNewIncomingCall. I am not 100% sure if that will fix it, but I guess it's worth a try.

JakZ
  • 61
  • 1
  • 4
-1

I guess you should call "onShowIncomingCallUi" manually in your "onCreateIncomingConnection" implementation like that:

conn.onShowIncomingCallUi()
rooest
  • 167
  • 1
  • 9