Anyone understand what is going on here?

Hi,

Got some crash reports from Google Play Console which I cant seem to grasp what I can do solve?

Anyone know what this is and/or know a solution?

Here is one example:

java.lang.RuntimeException :

 

at android.app.ActivityThread.performDestroyActivity (ActivityThread.java:4634)

 

at android.app.ActivityThread.handleDestroyActivity (ActivityThread.java:4652)

 

at android.app.ActivityThread.-wrap5 (Unknown Source)

 

at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1784)

 

at android.os.Handler.dispatchMessage (Handler.java:106)

 

at android.os.Looper.loop (Looper.java:164)

 

at android.app.ActivityThread.main (ActivityThread.java:7000)

 

at java.lang.reflect.Method.invoke (Native Method)

 

at com.android.internal.os.RuntimeInit$MethodAndArgsCaller.run (RuntimeInit.java:441)

 

at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:1408)

Caused by: java.lang.NullPointerException :

 

at plugin.liveBuild.CoronaLiveSync$CoronaRuntimeEventHandler.onExiting (CoronaLiveSync.java:84)

 

at com.ansca.corona.CoronaEnvironment$RuntimeEventHandler.onExiting (CoronaEnvironment.java:565)

 

at com.ansca.corona.CoronaRuntime.onExiting (CoronaRuntime.java:453)

 

at com.ansca.corona.CoronaRuntime.dispose (CoronaRuntime.java:101)

 

at com.ansca.corona.CoronaActivity.onDestroy (CoronaActivity.java:1762)

 

at android.app.Activity.performDestroy (Activity.java:7553)

 

at android.app.Instrumentation.callActivityOnDestroy (Instrumentation.java:1256)

 

at android.app.ActivityThread.performDestroyActivity (ActivityThread.java:4621)

And here is another:

java.lang.RuntimeException :

 

at android.app.ActivityThread.performDestroyActivity (ActivityThread.java:4076)

 

at android.app.ActivityThread.handleDestroyActivity (ActivityThread.java:4094)

 

at android.app.ActivityThread.-wrap5 (ActivityThread.java)

 

at android.app.ActivityThread$H.handleMessage (ActivityThread.java:1553)

 

at android.os.Handler.dispatchMessage (Handler.java:111)

 

at android.os.Looper.loop (Looper.java:207)

 

at android.app.ActivityThread.main (ActivityThread.java:5765)

 

at java.lang.reflect.Method.invoke (Native Method)

 

at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run (ZygoteInit.java:789)

 

at com.android.internal.os.ZygoteInit.main (ZygoteInit.java:679)

Caused by: java.lang.NullPointerException :

 

at plugin.liveBuild.CoronaLiveSync$CoronaRuntimeEventHandler.onExiting (CoronaLiveSync.java:84)

 

at com.ansca.corona.CoronaEnvironment$RuntimeEventHandler.onExiting (CoronaEnvironment.java:565)

 

at com.ansca.corona.CoronaRuntime.onExiting (CoronaRuntime.java:453)

 

at com.ansca.corona.CoronaRuntime.dispose (CoronaRuntime.java:101)

 

at com.ansca.corona.CoronaActivity.onDestroy (CoronaActivity.java:1762)

 

at android.app.Activity.performDestroy (Activity.java:6501)

 

at android.app.Instrumentation.callActivityOnDestroy (Instrumentation.java:1149)

 

at android.app.ActivityThread.performDestroyActivity (ActivityThread.java:4063)

Regards,

Anaqim

I’d guess that you’re declaring a variable and attempting to kill it again on exit, but not assigning anything to be killed in the middle. E.g. perhaps there’s a scenario where a file open event doesn’t fire for example, but you’re still trying to close it?

thanks a lot, that gives me some idea what to look into.

appreciate it!

Hello! It seems like you posted Live Build to google play. Please, do not distribute apps with Live Build on. This option is only for development. Distributing apps with Live Build on may expose your source code to owners of rooted devices.

Hi,

Its my first app for mobiles and I must have missed that since on all my test devices it never was an issue.

But it makes sense, and I’ll fix it.

Thanks for the help!

Anaqim

I’d guess that you’re declaring a variable and attempting to kill it again on exit, but not assigning anything to be killed in the middle. E.g. perhaps there’s a scenario where a file open event doesn’t fire for example, but you’re still trying to close it?

thanks a lot, that gives me some idea what to look into.

appreciate it!

Hello! It seems like you posted Live Build to google play. Please, do not distribute apps with Live Build on. This option is only for development. Distributing apps with Live Build on may expose your source code to owners of rooted devices.

Hi,

Its my first app for mobiles and I must have missed that since on all my test devices it never was an issue.

But it makes sense, and I’ll fix it.

Thanks for the help!

Anaqim