Send request over WiFi (without connection) even if Mobile data is ON (with connection) on Android M

Stanislav’s answer is correct but incomplete because only works in Lollipop. I’ve wrote a complete solution for Lollipop and Marshmallow onwards for you to route all network requests through WiFi when connected to a specific network of your choice. Kotlin In your Activity, @RequiresApi(Build.VERSION_CODES.LOLLIPOP) class RoutingActivity : Activity() { private var mConnectivityManager: ConnectivityManager? = null … Read more