Can I publish my app in market with code like this
try
{
StrictMode.ThreadPolicy policy = new StrictMode.ThreadPolicy.Builder().detectNetwork().build();
StrictMode.setThreadPolicy( policy );
HttpClient httpclient = new DefaultHttpClient();
....
}
catch( Throwable ignore )
{
.....
}
I read that strict mode just for debug regime and when I publish app I have to delete it.