NoClassDefFoundError 等等......Android

发布于 2024-11-24 16:06:02 字数 686 浏览 1 评论 0原文

我正在开发一个 Android 应用程序(我将其称为 ProjectA),该应用程序尝试通过 Web 服务调用登录到服务器。此 Web 服务调用位于我的工作区中的另一个包中(我将其称为 ProjectB)。我将 ProjectB 的 jar 包含在 ProjectA 中,并运行它。我收到此错误:

Caused by: java.lang.NoClassDefFoundError: org.apache.commons.configuration.PropertiesConfiguration

然后,我尝试在清单中添加几个使用库标签。我添加以下内容:

< uses-library android:name="org.apache.commons.configuration.PropertiesConfiguration" />

我收到以下错误:

Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY 
Please check logcat output for more details.

我尝试用谷歌搜索此错误,但在第二个错误的搜索中似乎出现的唯一内容是关于 Google API 的(主要指的是地图)。如果有人可以提供帮助,那就太好了。如果您需要更多信息,请告诉我。

I am working on an Android application (I will call this ProjectA) that is attempting to login to a server through a web service call. This web service call is in another package within my workspace (I will call this ProjectB). I include the jar of ProjectB in ProjectA, and run it. I get this error:

Caused by: java.lang.NoClassDefFoundError: org.apache.commons.configuration.PropertiesConfiguration

Then, I tried adding several uses-library tags in my manifest. I add this:

< uses-library android:name="org.apache.commons.configuration.PropertiesConfiguration" />

I get the following error:

Installation error: INSTALL_FAILED_MISSING_SHARED_LIBRARY 
Please check logcat output for more details.

I tried Googling this error, but the only thing that ever seems to come up in the searches with this second error is about the Google API's (mostly referring to the Map). If someone could help out, that would be great. Please let me know if you need more information.

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

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

发布评论

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

评论(1

栀子花开つ 2024-12-01 16:06:02

您的应用程序或其使用的某些代码使用 Apache Commons 配置组件。您将需要获取此代码的 .jar 文件(该文件可能已随您正在使用的任何需要它的库一起提供)并将其添加到您的 libs/ 目录中以将其内置到你的应用程序。

Your app, or some code that it uses, uses the Apache Commons Configuration components. You will need to obtain the .jar file for this code (which may have been supplied with whatever library you're using that needs it) and add it to your libs/ directory to have it built in to your app.

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