Back to project page android-sdk.
The source code is released under:
Copyright (c) 2013 Adcash OU. All rights reserved under Creative Commons Attribution 3.0 Unported http://creativecommons.org/licenses/by/3.0/ Redistribution and use in source and binary forms, with or...
If you think the Android project android-sdk 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 com.adcash.mobileads; //from w ww .j ava2s. c o m import android.content.Context; import android.content.SharedPreferences; import static android.content.Context.MODE_PRIVATE; public final class SharedPreferencesHelper { public static final String PREFERENCE_NAME = "mopubSettings"; private SharedPreferencesHelper() {} public static SharedPreferences getSharedPreferences(Context context) { return context.getSharedPreferences(PREFERENCE_NAME, MODE_PRIVATE); } }