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?

link|improve this question

74% accept rate
I don't think you can do this simply. You can try retrieving android:debuggable attribute of your application from the manifest, but that, again, isn't a 100% certainty. – Aleks G Jan 27 at 14:00
The other alternative would be to retrieve the hash of the signature from the apk and compare it with a known debug/release signatures used to sign your app. – Aleks G Jan 27 at 14:01
So I'll have to stick with the boolean variable – Bombastic Jan 27 at 14:07
feedback

1 Answer

There is no general solution but you may use isDebuggerConnected.

BUT this solution would also trigger/show the debug features if your users connect their phones to the PC and uses ddms themselves.

Maybe you sould combine this with one of the checks Aleks G suggested, and popup a Toast-message on every start that reminds you to disable debug ;-)

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.