微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

如何修复 java.lang.SecurityException: This PhoneAccountHandle is not enabled for this user?

如何解决如何修复 java.lang.SecurityException: This PhoneAccountHandle is not enabled for this user?

我使用下面给出的代码来制作自我管理的连接服务。但这已因此错误而停止工作:

java.lang.SecurityException:此用户未启用此 PhoneAccountHandle!

代码

class CallManager(context: Context) {
val telecomManager: TelecomManager
var phoneAccountHandle: PhoneAccountHandle
var context: Context

init {
    telecomManager = context.getSystemService(Context.TELECOM_SERVICE) as TelecomManager
    this.context = context

    val componentName = ComponentName(this.context,ConnService::class.java)
    phoneAccountHandle = PhoneAccountHandle(componentName,"com.darkhorse.videocalltest")
}

fun register(){
    val phoneAccount = PhoneAccount.builder(phoneAccountHandle,"com.darkhorse.videocalltest")
        .setCapabilities(PhoneAccount.CAPABILITY_CALL_PROVIDER) .setCapabilities(PhoneAccount.CAPABILITY_CONNECTION_MANAGER).build()
    telecomManager.registerPhoneAccount(phoneAccount)
}

fun incomingCall(caller: String?){
    val callInfo = Bundle()
    callInfo.putString("from",caller)
    telecomManager.addNewIncomingCall(phoneAccountHandle,callInfo)
    Log.i("incomingCall","incomingCall")
}
}

我确信之前的代码运行良好。

This question 没有帮助。

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。