当前位置: 首页 > 知识库问答 >
问题:

Twilio android sdk在电话会议上崩溃

左丘凡
2023-03-14
public void connectToConference(String name){

    updateAudioRoute(true);
    Map<String, String> parameters = new HashMap<String, String>();

    parameters.put("To","conference:"+BaseActivity.currentUser.getFirstName()+BaseActivity.currentUser.getLastName());
    if(device != null){
             connection = device.connect(parameters, null);
    }

    if (connection == null) {
        Log.w(TAG, "Failed to create new connection");
    }
} 

共有1个答案

冷正信
2023-03-14

我发现问题所在。

问题是库的device.connect()的JNI

1.2.7

 类似资料:
  • 轻推目前支持10人以下的电话会议,发起会议需要以回拨的方式,即接听023开头的电话会议来电 操作方法:右上角电话-电话会议-右下角发起-选择联系人-发起电话会议-添加参会人-接听来电   

  • 官网英文原文地址:http://dev.px4.io/starting-contributing.html 核心开发团队和社区的联系信息可以在下面找到。PX4项目使用了三个分支Git branching model: master 默认情况下不稳定,可以看到快速的开发。 beta 已充分测试,面向飞行测试者。 stable 指向最新的发布分支。 我们尝试通过rebases保持一个线性的历史,避免G

  • Contributions to the Dronecode guides, including the PX4 developer and user guides are very welcome! This article explains how you can make changes, add content, and create translations. Note You will

  • Twilio标记语言清楚地定义了如何将来电连接到公共会议室。 但我想同时拨打几个电话并加入其中。如果我在标记语言中使用“dial”动词,我会接到几个连续的呼叫,但我希望它们是并行的。 我的应用程序的基本操作是接到会议领导的电话,主动对接会议各方。

  • Contributing code to PX4 Adding a feature to PX4 follows a defined workflow. In order to share your contributions on PX4, you can follow this example. Sign up for github if you haven’t already Fork th