android · android/NetworkOnMainThreadException
NetworkOnMainThreadException
NetworkOnMainThreadException
Thrown (API 11+) when a blocking network call is made on the main (UI) thread. Move all network I/O to a background thread, Kotlin coroutine (Dispatchers.IO), or an async callback-based library such as OkHttp or Retrofit.