使用 Android 的 XMLRPC 时安装错误:INSTALL_FAILED_MISSING_SHARED_LIBRARY
我有一个使用 xmlrpc 库的 android 项目。我下载了 xmlrpc 库并导入到我的 eclipse 工作区中。然后我将它添加到我的 android 项目的构建路径中并使用它。当我在模拟器中运行时,出现此错误:“安装错误:INSTALL_FAILED_MISSING_SHARED_LIBRARY”。 xmlrpc 类没有被打包到我的 android 项目中吗?帮助...
I have an android project that uses the xmlrpc library. I downloaded the xmlrpc library and imported into my eclipse workspace. I then added it to the build path in my android project and use it. When I go to run in the emulator, I get this error: "Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY". Are the xmlrpc classes not being packaged into my android project? Help...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试在设备上安装地图应用程序(即 AVD 不支持 Google API),则会发生此错误。
尝试使用 Google API 创建一个新的 AVD 并使用它。这对我的情况有帮助。
This error happens if you try to install your Map application on a device (i.e.) AVD doesn't have Google API support.
Try creating a new AVD with Google API and use that. It helped in my case.
当我为 android 添加 xmlrpc 库时,我也遇到了这个错误,我通过将 xmlrpc 库的整个包从库的 src 文件夹复制到我的项目来解决它。
I had this error too when I added xmlrpc library for android , I solved it by copying the whole package of xmlrpc library from src folder of library to my project.