I wanted to know if there is a way to download a file to an android devices without using an async task.
My problem is that I want to use an async task in my app, and i need to call a download function INSIDE this asyncTask, but android's documentation says that it is only possible to create an asyncTask from the UI thread.
I tried creating a thread by using extends thread instead of extends asyncTask, but android still gave the "Network on UI thread exception".
I need a function that works like this: String downloadFile(String url){...} that returns the downloaded String (i'm downloading an xml file, nothing fancy)