I have this exception and I was reading a thread on this, and it seemed confusing:
How to fix android.os.NetworkOnMainThreadException?
I already added this l
You made network call on main thread which is against to android rules, so you have to do your network call on separate thread like asynctask or handler etc.