Strick Mode Policy:
*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.
StrictMode.setThreadPolicy(new StrictMode.ThreadPolicy.Builder()
.detectDiskWrites()
.penaltyLog() //Logs a message to LogCat
.build())