智能会议系统(16)---Linphone配置⼤全
Linphone配置⼤全
xml标签大全1. ⾃动接听电话:
non_l
<bool name="auto_answer_calls">false</bool>
2. 在第⼀次启动应⽤程序的时候跳转到登陆界⾯
LinphoneActivity.java
// boolean useFirstLoginActivity = getResources().getBoolean(R.bool.display_account_wizard_at_first_start);
// if (LinphonePreferences.instance().isProvisioningLoginViewEnabled()) {
// Intent wizard = new Intent();
// wizard.setClass(this, RemoteProvisioningLoginActivity.class);
// wizard.putExtra("Domain", Instance().wizardLoginViewDomain);
// startActivityForResult(wizard, REMOTE_PROVISIONING_LOGIN_ACTIVITY);
// } else if (useFirstLoginActivity && LinphonePreferences.instance().isFirstLaunch() || Lc().getProxyConfigList().length == 0) { // if (LinphonePreferences.instance().getAccountCount() > 0) {
// LinphonePreferences.instance().firstLaunchSuccessful();
// } else {
// startActivityForResult(new Intent().setClass(this, AssistantActivity.class), FIRST_LOGIN_ACTIVITY);
// }
// }
3.设置⾃动以视频⽅式接听电话
LinphonePreferences.instance().setAutomaticallyAcceptVideoRequests(true);
4.设置发起的通话为视频通话
LinphonePreferences.instance().setInitiateVideoCall(true)
5.设置允许视频通话
LinphonePreferences.instance().setDebugEnabled(true);
6.设置最⼤同时通话数量
7.与服务器的⼼跳包间隔时间
/res/raw/linphonerc_default ⽂件
keepalive_period=30000
8.打开和关闭linphone的调试Debug开关
LinphonePreferences.instance().setDebugEnabled(false)
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论