Does anyone know what this could possibly mean? Apparently someone else's app caused mine to crash? And it happens to be an app that directly competes with mine:

java.lang.RuntimeException: Unable to create BackupAgent com.MY_COMPEITOR'S_APP.backup.BackupAgent: java.lang.NullPointerException
at android.app.ActivityThread.handleCreateBackupAgent(ActivityThread.java:2905)
at android.app.ActivityThread.access$4000(ActivityThread.java:125)
at android.app.ActivityThread$H.handleMessage(ActivityThread.java:2128)
at android.os.Handler.dispatchMessage(Handler.java:99)
at android.os.Looper.loop(Looper.java:123)
at android.app.ActivityThread.main(ActivityThread.java:4627)
at java.lang.reflect.Method.invokeNative(Native Method)
at java.lang.reflect.Method.invoke(Method.java:521)
at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:858)
at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616)
at dalvik.system.NativeStart.main(Native Method)
Caused by: java.lang.NullPointerException
at     android.app.ActivityThread$PackageInfo.initializeJavaContextClassLoader(ActivityThread.java:529)
at android.app.ActivityThread$PackageInfo.getClassLoader(ActivityThread.java:474)
at android.app.ActivityThread.handleCreateBackupAgent(ActivityThread.java:2873)
... 10 more
link|improve this question

Where is the stack trace which shows YOUR app crashing? – MisterSquonk Jul 22 '11 at 17:12
not an expert, but i guess that the '10 more' can be helpful – BlackBear Jul 22 '11 at 17:19
It doesn't show my app crashing. This is from the Android Market Developer Console site. It's listed as a user-reported crash for my app, but this is all it tells me. I don't think I can expand the "10 more", or at least I don't know how. It's not a link. – TenFour04 Jul 22 '11 at 17:24
Possibly what happened is that the other app crashed, and because of the similarity in name to my app, Android accidentally sent it to me instead of the other developer. By similar, I mean they both have a common word in the package name, but the two package names are certainly not the same. – TenFour04 Jul 22 '11 at 17:26
3  
By chance do you have a intent that may be intercepted by the other app? – Pyrodante Oct 15 '11 at 23:14
show 9 more comments
feedback

1 Answer

TenFour I would bet since you are talking about a competing App that there must be some INtent Handling going on that led to this. Maybe the Competitor app was actually trying to do something at the same time your app was trying to do something and they clashed. Without knowing more it's hard to provide a more detailed answer

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.