I have one question about finding if your application is in release mode or in debug.
I need to find a way to detect the applications mode automatically with a function. For now I'm using a simple way declaring a boolean which everytime I have to change true/false. But sometimes me, or the other developer may forget to change it. Actually I need this because, I'm using an error handler in my app which is sending to our server exceptions which are uncaught. And I don't want to do this in debug mode.
So is there any way I can detect this with some functions which my app will do automatically, without using any variables like I do?
android:debuggableattribute of your application from the manifest, but that, again, isn't a 100% certainty. – Aleks G Jan 27 at 14:00