2

我是android开发的新手。我今天在 AndroidStudio 上调试了我的 android 应用程序,我在下面得到了 Logcat:

09-04 11:39:46.730    1859-1878/com.tsf.shell I/dalvikvm: Rejecting re-init on previously-failed class Lcom/flurry/android/d; v=0x0
09-04 11:39:46.730    1859-1878/com.tsf.shell W/System.err: java.lang.NoClassDefFoundError: com/flurry/android/d
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at com.flurry.android.s.q(SourceFile:1772)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at com.flurry.android.s.p(SourceFile:1726)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at com.flurry.android.s.b(SourceFile:1715)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at com.flurry.android.dd.a(SourceFile:1706)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at com.flurry.android.bw.run(SourceFile:45)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at android.os.Handler.handleCallback(Handler.java:725)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at android.os.Handler.dispatchMessage(Handler.java:92)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at android.os.Looper.loop(Looper.java:137)
09-04 11:39:46.773    1859-1878/com.tsf.shell W/System.err: at android.os.HandlerThread.run(HandlerThread.java:60)
09-04 11:39:46.773    1859-1878/com.tsf.shell E/FlurryAgent: java.lang.NoClassDefFoundError: com/flurry/android/d
        at com.flurry.android.s.q(SourceFile:1772)
        at com.flurry.android.s.p(SourceFile:1726)
        at com.flurry.android.s.b(SourceFile:1715)
        at com.flurry.android.dd.a(SourceFile:1706)
        at com.flurry.android.bw.run(SourceFile:45)
        at android.os.Handler.handleCallback(Handler.java:725)
        at android.os.Handler.dispatchMessage(Handler.java:92)
        at android.os.Looper.loop(Looper.java:137)
        at android.os.HandlerThread.run(HandlerThread.java:60)

它显示“NoClassDefFoundError”。所以我一直跟踪它并试图弄清楚它。但是我在跟踪过程中发现Android SDK源代码中有很多“无法解析符号xxx”的问题,发现都是错误引用引起的。它是怎么发生的?在源代码和数字中。我认为这可能是问题所在。我应该自己修吗?还是我在某个步骤中错了或错过了什么?谢谢,如果你有任何想法。

编辑:为了更清楚,我为它添加了一张涂鸦图片。(PS:我不知道这是否是错误的原因。或者我只是忽略它?) 在此处输入图像描述

4

1 回答 1

0

请尝试: 1. 清理/重建项目 2. 使缓存无效/重新启动

于 2018-04-16T10:09:50.870 回答