I use bugsensec.om to receive crash reports from my android app. Today I received a raport including:
java.lang.RuntimeException: Unable to instantiate activity
ComponentInfo{{myPackage}/{myPackage}.StationListActivity}:
java.lang.ClassNotFoundException: {myPackage}.StationListActivity in loader
dalvik.system.PathClassLoader[/system/app/ProwlerAgent411.apk:
/data/app/{myPackageApp}.apk]
It's just I am curious what this actually means. It was fired by a rooted device in US (my app is targeted to only local customers in Europe). After some googling for this ProwlerAgent I found Norton Mobile reference.
Maybe I have just answered my own question.. Is it rather personal AV scanner on someones phone or maybe a sandbox for checking apps at Norton labs (I don't think I would get this report if it was the case). Should I do something about it in terms of better app development?
I have found a similar problem. But i noticed 1 thing. I had the activity inside my manifest. It was a legacy activity that I no longer used and it was removed in favor of a fragment, but I never removed it from the Manifest file. That caused that problem as far as it happened in my app.
So basically in my Manifest I had .ActivtyAboutUs but nowhere in the app source code did I have ActivityAboutUs.java That might be the cause of your problem.