I know, there are much posts and answers on this topic and it seems, I have read them all... But I just want to know how to do an easy https request in my Android app. Is there a easy class which make such an request? I want to call something like
String response = new EasyHttpRequest().execute(myUrl).get();
in my MainActivity
For information I can't just set the response Text to an TextView in the onPostExecute() method, I have to work with this data and save it or something else.