java - NullPointerException in HardwareRenderer -


i wish had more information error don't. have tool called bugsense(now splunk mint) sends crashes remote server , i'm getting:

java.lang.nullpointerexception @ android.view.hardwarerenderer$glrenderer.checkcurrent(hardwarerenderer.java:960) @ android.view.hardwarerenderer$gl20renderer.destroylayers(hardwarerenderer.java:1148) @ android.view.viewrootimpl.destroyhardwareresources(viewrootimpl.java:576) @ android.view.viewrootimpl.performtraversals(viewrootimpl.java:973) @ android.view.viewrootimpl.handlemessage(viewrootimpl.java:2448) @ android.os.handler.dispatchmessage(handler.java:99) @ android.os.looper.loop(looper.java:137) @ android.app.activitythread.main(activitythread.java:4482) @ java.lang.reflect.method.invokenative(native method) @ java.lang.reflect.method.invoke(method.java:511) @ com.android.internal.os.zygoteinit$methodandargscaller.run(zygoteinit.java:787) @ com.android.internal.os.zygoteinit.main(zygoteinit.java:554) @ dalvik.system.nativestart.main(native method) 

the interesting thing of error instances came from:

  • blu dash 4.0
  • they rooted
  • they had mobile net turned off
  • they had @ least 12 running apps

so... think?

  • has had npe in hardwarerenderer class?
  • could 'root' thing (i.e. issue device being rooted)?
  • could 'hardware' thing (i.e. issue blue dash 4.0)

the problem code using object null. e.g:

myclass class; class.dostuff(); // throw nullpointerexception class null  myclass newclass = new myclass(); newclass.dostuff(); // work newclass pointing object. 

apologies if belittling.

as not have offending code, cannot further. suggest include code @ (hardwarerenderer.java:960), , call route stack, causing exception.

the point being, can't more without offending code examine.

hope helps.


Comments

Popular posts from this blog

java - activate/deactivate sonar maven plugin by profile? -

python - TypeError: can only concatenate tuple (not "float") to tuple -

java - What is the difference between String. and String.this. ? -