Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试将 Flurry 分析集成到 android 应用程序中。
我已经成功集成,但它java.lang.NoClassDefFoundError: com.flurry.android.FlurryAgent"在我的 onStart 方法中给出了“运行时错误”。
java.lang.NoClassDefFoundError: com.flurry.android.FlurryAgent"
有什么建议吗??
在您的 Android 项目中,在项目的根目录下创建一个名为 libs 的目录(在 src/、res/ 等旁边)
找到要使用的库的 JAR 文件并将其复制到 libs/ 目录中。
设置项目以使用库:
更多参考这里:
我有同样的错误......</p>
对我有用的是:我已经有一个与我的 src & res 文件夹处于同一层次结构的 libs 文件夹。FlurryAgent.jar 文件保存在我的桌面上。我只是右键单击 FlurryAgent 文件,复制它。然后我将文件粘贴到 Eclipse 的 libs 文件夹中。Eclipse 也自动将 FlurryAgent.jar 文件复制到“Android Dependencies”文件夹中。