Windows 上的 csipsimple
我想在 Windows 操作系统上使用 eclipse 运行 csipsimple。我用SVN下载了该项目,并将2个libpjsipjni.so
文件复制到CSipSimple\libs\armeabi
和CSipSimple\libs\armeabi-v7a
。
现在,我收到 272 个错误,通过查看它们,我发现它们的内容如下:
import org.pjsip.pjsua.pj_pool_t;
private pj_pool_t dialtonePool;
是否有人成功绕过这些错误?
I want to run csipsimple using eclipse on Windows OS. I downloaded the project with SVN, and copied the 2 libpjsipjni.so
files to CSipSimple\libs\armeabi
and CSipSimple\libs\armeabi-v7a
.
Now, I recieve 272 errors and from going over them i see that they are on things like:
import org.pjsip.pjsua.pj_pool_t;
private pj_pool_t dialtonePool;
Does someone accomplished to bypass those errors?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
好的找到答案了!
显然 org 文件夹中缺少 pjsua jni 文件。
为了获取它们从这里下载
将它们解压到 org 文件夹中,所有问题都会消失。
OK found the answer!
apparently there were missing files of pjsua jni on the org folder.
in order to get them download them from here
extract them into org folder and all your problems will fly away.