I have started using the Android StrictMode and find that it would be great to have it always running during development and not just on a special branch I created in git. The reason I did this is my apps requirement to run with 1.6 and up.

I read on the android developer blog that you can set it up so that you activate it via reflection. I was just wondering how that would actually look like and if it might be possible to have this documented here (or somewhere else) rather than having everybody that wants to use it work out themselves.

link|improve this question

67% accept rate
FWIW, I've made a note to cover this in an upcoming update to one of my books. – CommonsWare Jan 6 '11 at 1:52
if I dont get an answer here I will figure it out myself when I have a bit of time to do it.. need to prep for andevcon at the moment though.. – Manfred Moser Jan 6 '11 at 2:21
feedback

4 Answers

up vote 6 down vote accepted

So I did not want to wait and decided to make the effort and implement this myself. It basically boils down to wrapping StrictMode in a wrapper class and deciding at runtime via reflection if we can activate it.

I have documented it in detail in a blog post and made it available in github.

link|improve this answer
feedback

I saw your blog post. Since you only ever want to setup StrictMode at most once per Java file, would it make any sense to simplify the code to call for setup as follows?

Here's an alternate StrictModeWrapper:

import android.content.Context;
import android.content.pm.ApplicationInfo;
import android.os.StrictMode;

public class StrictModeWrapper {
    public static void init(Context context) {
        // check if android:debuggable is set to true
        int applicationFlags = context.getApplicationInfo().flags;
        if ((applicationFlags & ApplicationInfo.FLAG_DEBUGGABLE) != 0) {
            StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
                .detectDiskReads()
                .detectDiskWrites()
                .detectNetwork()
                .penaltyLog()
                .build());
            StrictMode.setVmPolicy(new StrictMode.VmPolicy.Builder()
                .detectLeakedSqlLiteObjects()
                .penaltyLog()
                .penaltyDeath()
                .build());
        }
    }
}

From your code, you only need to do the following:

try {
    StrictModeWrapper.init(this);
}
catch(Throwable throwable) {
    Log.v("StrictMode", "... is not available. Punting...");
}

where this is the local context, such as your Activity or Application or whatever. This seems to work for pre-2.3 Android, and also gives you the power of using the other methods of the Builder classes to configure StrictMode exactly as you'd like.

link|improve this answer
Yes.. that would work too and might be a bit shorter in the sense that it does not even try to use reflection but just does a full on init. It is a bit less flexible this way though. It is however true that you only want to do this all once. I just do it in the onCreate of the application class, which is a singleton already anyway.. – Manfred Moser Jan 18 '11 at 5:11
I once saw an answer from Dianne Hackborn on the Android Developers group that recommended against extending Application if it's not absolutely necessary. The policies apply to threads, so you could initialize StrictMode in the onCreate() of your launcher activity, and it should then be just as good as initializing from Application as it would apply to the main thread. Unless of course you fire up additional threads that you want to monitor, but you'd need to setup StrictMode on those threads as well even if you initialized from Application. – Dave MacLean Jan 18 '11 at 14:25
Yes. Thats another possibility. I also saw that recommendation from Dianne, but MANY apps I see extends application and it works quite well that way. Like they say .. there are many ways to skin a cat ;-) – Manfred Moser Jan 18 '11 at 23:49
feedback

I've read Manfred's blog post but it doesn't work if you set target platform version lower than 2.3 because StrictMode.enableDefaults(); method is unavailable.

Here is my solution that relies fully on reflection and doesn't generate compilation errors:

    try {
        Class<?> strictModeClass = Class.forName("android.os.StrictMode", true, Thread.currentThread()
                .getContextClassLoader());

        Class<?> threadPolicyClass = Class.forName("android.os.StrictMode$ThreadPolicy", true, Thread
                .currentThread().getContextClassLoader());

        Class<?> threadPolicyBuilderClass = Class.forName("android.os.StrictMode$ThreadPolicy$Builder", true,
                Thread.currentThread().getContextClassLoader());

        Method setThreadPolicyMethod = strictModeClass.getMethod("setThreadPolicy", threadPolicyClass);

        Method detectAllMethod = threadPolicyBuilderClass.getMethod("detectAll");
        Method penaltyMethod = threadPolicyBuilderClass.getMethod("penaltyLog");
        Method buildMethod = threadPolicyBuilderClass.getMethod("build");

        Constructor<?> threadPolicyBuilderConstructor = threadPolicyBuilderClass.getConstructor();
        Object threadPolicyBuilderObject = threadPolicyBuilderConstructor.newInstance();

        Object obj = detectAllMethod.invoke(threadPolicyBuilderObject);

        obj = penaltyMethod.invoke(obj);
        Object threadPolicyObject = buildMethod.invoke(obj);
        setThreadPolicyMethod.invoke(strictModeClass, threadPolicyObject);

    } catch (Exception ex) {
        Log.w(TAG, ex);
    }
link|improve this answer
The implementation is in github and has been tested and used by many people. It works just fine. I use it every day. But yes... if you need target below 2.3 your trick will work as well. – Manfred Moser Nov 15 '11 at 17:47
@ManfredMoser The only reason I posted it is need to support targets lower than 2.3. Your solution is good, but in this special case it doesn't work. – pixel Nov 15 '11 at 20:06
thanks @ManfredMoser – Luigi Agosti Mar 2 at 15:09
feedback

I've thrown together another variation on the theme above, which I've outlined in a blog post here. The main difference in my approach is that it also provides wrappers for the disk and vm policy objects, so that you easily can bracket StrictMode-offending code with temporary policy changes. Feedback is welcome.

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.