Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is it possible to force an Android application to use only the mobile radio connection (3g/4g/etc), disallowing the use of WiFi?

I think I want to use a HIPRI connection: (ex: WIFI turned on, use HIPRI 3G): http://groups.google.com/group/android-developers/browse_thread/thread/d41f85505484d29b

share|improve this question

4 Answers

I don't believe you can "force" the connection path without explicitly turning off the Wi-Fi radio temporarily (not recommended). However, you could try setting the network preference during the period you want this to occur:

ConnectivityManager cm = (ConnectivityManager)getSystemService(Context.CONNECTIVITY_SERVICE);
//Prefer mobile over wifi
cm.setNetworkPreference(ConnectivityManager.TYPE_MOBILE);

//Do your work

//Remove your preference
cm.setNetworkPreference(ConnectivityManager.DEFAULT_NETWORK_PREFERENCE);

Hope that Helps!

share|improve this answer
Does this really work ? – NeTeInStEiN Nov 7 '11 at 17:40
1  
As far as my testing has seen. In the source for ConnectivityService, you can see that setting this preference causes the system to attempt to teardown any non-preferred networks that are connected, so it's doing what we'd expect to happen. codesearch.google.com/codesearch#uX1GffpyOZk/services/java/com/… – Devunwired Nov 7 '11 at 20:38
This example is a bit old. Updated to use the proper constant for resetting the preference back to defaults. – Devunwired Nov 7 '11 at 20:39

In Android 2.2 you can use high-priority mobile data at the same time as WiFi. The value of the "feature" parameter is "enableHIPRI", and is hidden in the Phone API.

Method: ConnectivityManager.startUsingNetworkFeature(int networkType, String feature) of http://developer.android.com/reference/android/net/ConnectivityManager.html

Source: http://code.google.com/p/android/issues/detail?id=5885

You could check this other answer: http://stackoverflow.com/a/4756630/327011

This is NOT a good policy...use it if REALLY needed!

share|improve this answer

(I answered this same question here)

You can't explicitly force the communications channel on a per-app basis (you can request to use a preferred mode via ConnectivityManager.setNetworkPreference(...), but that's not "forcing").

Though it's probably terrible UX, you can inform the user that your app disallows use of WiFi, then disable their WiFi if they want to continue. To do so, you need the ACCESS_WIFI_STATE and CHANGE_WIFI_STATE permissions. The code would look something like this:

manager = (WifiManager)this.getSystemService(Context.WIFI_SERVICE);

if(manager.isWifiEnabled()) {
    manager.setWifiEnabled(false);
}
// and to be sure:
ConnectivityManager.setNetworkPreference(ConnectivityManager.TYPE_MOBILE);
share|improve this answer

This link may help as well, but no exactly sure what an HIPRI connection does in every case (ex: WIFI turned on)

http://groups.google.com/group/android-developers/browse_thread/thread/d41f85505484d29b

share|improve this answer
This should be added to the question. – NeTeInStEiN Nov 8 '11 at 10:24

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.