The below Code Snippet is to setup the StrictMode for Thread Policies. This Code is to be set at the entry points to our application.
suggest changeStrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectDiskWrites()
.penaltyLog() //Logs a message to LogCat
.build())
Found a mistake? Have a question or improvement idea?
Let me know.
Table Of Contents