2

大约 10 天前,我的应用程序开始记录此异常(在开发控制台上看到):

java.lang.NullPointerException: 
  at org.chromium.android_webview.AwContents$AwViewMethodsImpl.onDragEvent (AwContents.java:191)
  at com.android.webview.chromium.WebViewChromium.onDragEvent (WebViewChromium.java:782)
  at android.webkit.WebView.onDragEvent (WebView.java:2554)
  at android.view.View.dispatchDragEvent (View.java:22202)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1431)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewGroup.dispatchDragEvent (ViewGroup.java:1417)
  at android.view.ViewRootImpl.handleDragEvent (ViewRootImpl.java:6308)
  at android.view.ViewRootImpl.-wrap11 (ViewRootImpl.java)
  at android.view.ViewRootImpl$ViewRootHandler.handleMessage (ViewRootImpl.java:4199)
  at android.os.Handler.dispatchMessage (Handler.java:102)
  at android.os.Looper.loop (Looper.java:154)
  at android.app.ActivityThread.main (ActivityThread.java:6776)
  at java.lang.reflect.Method.invoke (Native Method)
  at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:1496)
  at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1386)

我不知道它可能是(所以我无法复制它)并且堆栈跟踪不涵盖我的任何课程。关于这个例外,我只知道:

  • 仅影响具有 android 7 或 7.1 的设备
  • 第一次发生在 2017 年 10 月 11 日
  • 它每天发生大约 50 次,直到 2017 年 11 月 5 日
  • 它从 2017 年 11 月 6 日爆发到现在,每天发生约 340 次

用户应用程序使用从大约 1 年开始稳定(每天 3000 个会话,每个会话 15 分钟)。应用程序是单人纸牌游戏(没有使用 libgdx 的框架)。

这是我的 build.gradle:

apply plugin: 'com.android.application'

android {
    useLibrary 'org.apache.http.legacy'
    compileSdkVersion 25
    buildToolsVersion '25.0.3'
    defaultConfig {
        applicationId "com.pisano.app.solitari"
        minSdkVersion 15
        targetSdkVersion 23

        multiDexEnabled = true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
        }
        debug {
            signingConfig signingConfigs.config
        }
    }

    dexOptions {
        javaMaxHeapSize "4g"
    }
}

dependencies {
    compile 'com.nostra13.universalimageloader:universal-image-loader:1.9.5'
    compile project(':pagecontrol')
    compile 'com.facebook.android:facebook-android-sdk:4.26.0'
    compile 'com.google.android.gms:play-services-games:11.2.2'
    compile 'com.google.android.gms:play-services-plus:11.2.2'
    compile 'com.google.android.gms:play-services-analytics:11.2.2'
    compile 'com.google.android.gms:play-services-location:11.2.2'
    compile 'com.google.firebase:firebase-core:11.2.2'
    compile 'com.google.firebase:firebase-ads:11.2.2'

}

apply plugin: 'com.google.gms.google-services'

非常感谢。

4

1 回答 1

1

问题是由于 admob 横幅造成的。如果在拖动过程中刷新,则拖动目标设置为空。

于 2017-11-13T20:52:25.950 回答