I'm anxiously awaiting the opensource release of StrictMode for continuation of our platform development. The sample in the blog at http://android-developers.blogspot.com/2010/12/new-gingerbread-api-strictmode.html suggests surrounding the StrictMode calls with if (DEVELOPER_MODE). For SDK development, I'd expect this constant to be locally defined byt each application. However, for platform development, is android.util.Config.DEBUG the best way to determine whether to turn this on?

link|improve this question
1  
I assumed it was a boolean they defined just an arbitrary name. – schwiz Dec 15 '10 at 16:19
feedback

3 Answers

Sorry, DEVELOPER_MODE was just an arbitrary name I picked for the blog post and Javadoc. Perhaps I should make that more clear in the docs.

I'd imagined people would make their own hard-coded,

private static final boolean DEVELOPER_MODE = false;

... that they maintain by hand, but looks like Config.DEBUG would have been a better thing to use. I didn't even know about that! :)

link|improve this answer
I notice in the OpenSource Gingerbread code that none of the Core Android Apps are using StrictMode. I was hoping to see how they were using it to model how our own platform development would use StrictMode. Can you provide any insights into how Android's platform development team is enabling/disabling StrictMode during their development cycle. – Dave Boldt Jan 5 '11 at 19:26
Dave, that's because they're ALL using StrictMode. We turn it on for all system apps: – Brad Fitzpatrick Jan 18 '11 at 23:06
Whoops, only single line comments (I hit Enter too early). See android.git.kernel.org/?p=platform/frameworks/… and search for "conditionallyEnableDebugLogging", which is public but a hidden API. – Brad Fitzpatrick Jan 18 '11 at 23:07
feedback

Config.DEBUG is not going to actually works since it is pretty much always set to false. It is better to look at the debuggable attribute in the AndroidManifest file . I have documented it on a blog post. Links are with this answer

link|improve this answer
feedback

To Answer my own question... As a platform developer (one using Android to create a device), the Activity Manager in Android automatically enables StrictMode on the main thread for all apps installed on the System Partition whenever the platform is built with an eng or userdebug built. I agree with Manfred that Config.DEBUG is not appropriate for SDK developers. Essentially, platform developers writing applications which are loaded by default on the System Partition don't have to do anything to take advantage of StrictMode - the platform does it for them.

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.