About www.error!

WWW www=new WWW(“http://android.yesky.com/uploads/attachments/2010-04/27/0370b86j.jpg”);
yield return www;
if (www.error != null)
{
Debug.Log (www.error);
return false;
}
picture.guiTexture.texture=www.texture;

This codes play in Gamewindow no problem.But build on android www.error

Did you check the Stackoverflow answer on that problem here?

Apparently recreating the AVD fixes the issue.. didn't test it myself though.