SharedPreferences i boolean

Próbuję ustawić "isPhysicalTheftEnabled" na false, gdy metoda jest wykonywana, ale to nie wydaje się działać. Czy ktoś ma jakiś pomysł?

        SharedPreferences sp = getSharedPreferences("isPhysicalTheftEnabled", MODE_WORLD_READABLE);
        SharedPreferences.Editor ed = sp.edit();
        ed.putBoolean("isPhysicalTheftEnabled", false);

questionAnswers(3)

yourAnswerToTheQuestion