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");
}
}
}