I\'ve been banging my head trying to figure out how to send a post method in Android. This is how my code look like:
public class HomeActivity extends Activi
Thank you , I found this, I had just enable the StrictMode
public void onCreate() { if (DEVELOPER_MODE) { StrictMode.enableDefaults(); } super.onCreate();
}