-
-
Save patrickhammond/07fbefaa2aa4254f4bb0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* Created by Bill on 7/28/14. | |
*/ | |
public class LearningApplication extends Application { | |
private static final String TAG = QuickeyLearningApplication.class.getSimpleName(); | |
@Override | |
public void onCreate() { | |
super.onCreate(); | |
// If we're using a developer build on a phone > 2.3 then enforce StrictMode | |
if (BuildConfig.DEBUG && Build.VERSION.SDK_INT >= Build.VERSION_CODES.GINGERBREAD) { | |
StrictMode.setThreadPolicy(buildPolicy()); | |
Log.w(TAG, "Strict Mode Enforced."); | |
} | |
} | |
private StrictMode.ThreadPolicy buildPolicy() { | |
return new StrictMode.ThreadPolicy.Builder().detectAll().penaltyLog().build(); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment