How can I fix ‘android.os.NetworkOnMainThreadException’?

NOTE : AsyncTask was deprecated in API level 30.AsyncTask | Android Developers This exception is thrown when an application attempts to perform a networking operation on its main thread. Run your code in AsyncTask: How to execute the task: In MainActivity.java file you can add this line within your oncreate() method Don’t forget to add … Read more