I am working on some legacy code that includes the following line in the AndroidManifest.xml file:
<activity android:name="com.crittercism.NotificationActivity"/>
Since I can't find any mention of this in the Crittercism docs, I wonder what its purpose is and if it might be obsolete now. Since my company is using Crittercism for bug reporting, I can't just remove all references to Crittercism without thinking.
So I'm trying to figure out the purpose of this Activity. When I start it from the command line, I get a blank screen, but if I launch it with the string extra "-e com.crittercism.notification XXX", then the Activity will show the message "Developer: XXX". (I figured this out by decompiling the crittercism.jar file.) Removing the Activity from the AM.xml file does not seem to break anything but I'm not sure - perhaps it gets used later somehow.