为什么 Android 2.3 中包含的本机 SIP 堆栈无法在 3g 上工作?

发布于 2024-11-12 01:10:23 字数 132 浏览 4 评论 0原文

我想知道为什么 Android 框架(自 2.3 起)中包含的本机 SIP 堆栈不能在 3g 上工作?

这是否与谷歌对其合作伙伴可能有的任何法律或限制有关?

此外,有人知道是否有计划取消该限制吗?

谢谢

I was wondering why does the native SIP stack included in the Android framework(since 2.3) does not work over 3g?

Could it have something to do with any laws or restrictions google may have with his partners?

And furthermore, does anybody know if there is any plans to remove that restriction ?

Thx

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

岁月无声 2024-11-19 01:10:23

GingerBread 中,SipManager 设置为工作仅在无线网络上。

`<bool name="config_sip_wifi_only">true</bool>`

但从 4.0 开始,此配置已已更改为 false

因此,理想情况下,本机 sip 堆栈应该适用于从 Ice Cream Sandwich 开始的 3G。

但同样,如果手机是由服务提供商出售的,那么该功能可能已被禁用。因此,出售的解锁手机可能完好无损。

要检查是否支持 Sip over 3G,您可以使用 api

   SipManager.isSipWifiOnly(mContext);

In GingerBread, SipManager is set to work only on wifi.

`<bool name="config_sip_wifi_only">true</bool>`

But from 4.0 onwards, this config has been changed to false

So Ideally native sip stack should work on 3G from Ice Cream Sandwich onwards.

But again if the phone is sold by a service provider, then this might have been disabled. So phones sold unlocked may have this intact.

To check whether Sip over 3G is supported you can use the api

   SipManager.isSipWifiOnly(mContext);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文