Back to project page XposedMenuBeGone.
The source code is released under:
GNU General Public License
If you think the Android project XposedMenuBeGone listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package ro.epb.menubegone.settings; // www.j ava2s . c om import ro.epb.menubegone.core.Constants; import android.annotation.SuppressLint; import android.content.Context; import android.content.SharedPreferences; public class PreferencesHelper { @SuppressWarnings("deprecation") @SuppressLint("WorldReadableFiles") public static SharedPreferences getPreferences(Context context) { return context.getSharedPreferences(Constants.PREF_FILE, Context.MODE_WORLD_READABLE); } }