Skip to content

Instantly share code, notes, and snippets.

@jgdoncel
Created December 12, 2013 11:34
Show Gist options
  • Save jgdoncel/7926672 to your computer and use it in GitHub Desktop.
Save jgdoncel/7926672 to your computer and use it in GitHub Desktop.
Android, deshabilitar Strictmode
public void onCreate (Bundle savedInstanceState)
{
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().permitAll().build();
StrictMode.setThreadPolicy(policy);
super.onCreate(savedInstanceState);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment