Android 2.3 使用外部 JAIN-SIP(J-SIP) 堆栈 |类路径

发布于 2024-11-03 17:20:36 字数 668 浏览 5 评论 0原文

我正在尝试在 Android 2.3.3 上使用 JAIN-SIP (J-SIP) 库。 (http://jsip.java.net/) 因此,我使用了 SIP-Stack 附带的一个非常基本的 SIP 示例应用程序。 此示例在 Android 设备 <= Android 2.2 上完美运行。

问题是,Android 2.3.3 带来了 SIP-Strack 及其系统库, 这是 JAIN-SIP 堆栈的稍微修改版本。 因此,在 Android 2.3.3 设备上,会加载内部 SIP-Stack(因为相同的包/库名称),而不是 APK 附带的 JAIN-SIP,并且应用程序会因“找不到功能”异常而崩溃(由于事实上,某些功能在此内部 Android 2.3.3 SIP-Stack 中不存在)。

我想知道的是,如何“优先考虑”APK 附带的 JAIN-SIP 堆栈并忽略 Android 系统 SIP-Stack。

一种解决方案是使用内部 SIP-Stack directyl,强烈建议不要这样做,因为没有人知道它是否会在下一个 Android 版本中进一步修改。

我想到的另一个解决方案是更改“我的”JAIN-SIP 堆栈的包名称,使其不与内部 SIP 堆栈混合。

在manifest.xml中的uses-library声明不起作用,因为它仅适用于内部SDK-libs / SDK-Addons。

还有更多想法吗?

I'm trying to use the JAIN-SIP (J-SIP) library on Android 2.3.3. (http://jsip.java.net/)
Therefore I utilized a very basic SIP-example app that comes with the SIP-Stack.
This example runs perfectly on Android devices <= Android 2.2.

The problem ist, that Android 2.3.3 brings a SIP-Strack with it's system-libraries,
which is a slightly modified version of the JAIN-SIP stack.
So on Android 2.3.3 devices, the internal SIP-Stack is loaded (because of same package/library names) instead of the JAIN-SIP that comes with the APK and the application crashes with "function not found" exceptions (due to the fact that some functions don't exist in this internal Android 2.3.3 SIP-Stack).

What I wan't to know is, how I can "priorize" my JAIN-SIP stack that comes with the APK and ignore the Android system SIP-Stack.

One Solution is using the internal SIP-Stack directyl, which is strongly discouraged, because no one knows if it's not further modified with the next Android releases.

The other solution that came to my mind is changing the package names of "my" JAIN-SIP stack that it is not mixed up with the internal SIP-stack.

The uses-library declaration in the manifest.xml does not work, because it's only for internal SDK-libs / SDK-Addons.

Any more ideas?

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

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

发布评论

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

评论(2

一枫情书 2024-11-10 17:20:36

我们正在考虑发布 jar,通过使用后转换工具重命名所有 javax 类,并将该 jar 与常规 jsip jar 一起发布,从而可以将 JSIP 堆栈嵌入到任何 Android 设备中。
请参阅 https://groups.google.com/d/topic/mobicents-公共/UD7ZTX74Yrk/讨论

吉恩

We are considering shipping jars which would allow to embed the JSIP Stack into any Android devices by renaming all the javax classes with a post convert tool and publish the jar along with the regular jsip jars.
See https://groups.google.com/d/topic/mobicents-public/UD7ZTX74Yrk/discussion

Jean

哭泣的笑容 2024-11-10 17:20:36

我应用了我提出的解决方案,并通过 Eclipse 重构功能重命名了 JSIP 堆栈的包,并使 JSIp 堆栈在 Android 2.3.3 模拟器和设备上工作。
示例和“SipStackImpl.java”类中存在包路径字符串,应手动将其重命名(查找/替换)为新的包路径。

我使用 JSIP 堆栈中的shootist 和shootme 示例对其进行了测试。

它还可以在模拟器中运行 Android 2.2。

如果有人能提出更好的解决方案,我将不胜感激。

I applied my proposed solution and renamed the packages of the JSIP-stack, via the Eclipse Refactoring function and got the JSIp stack working on Android 2.3.3 Emulator and device.
There are package-path strings in the samples and in the class "SipStackImpl.java" which should get renamed (find/replace) by hand to new new package paths.

I tested it with the shootist and shootme samples from the JSIP stack.

It also ran on Android 2.2 in the Emulator.

If someone could come up with a better solution, I would apreciated it.

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