Thursday, May 16, 2013

Bypass Android strict mode policy on networks


Solution
if (android.os.Build.VERSION.SDK_INT > 9) {
     StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
     StrictMode.setThreadPolicy(policy);
   }

No comments:

Post a Comment