Mms Sending Connectivity Issues When Wifi Is Active (android)
I'm working on an Android application that will send MMS internally without using the native messaging app. I've been using the code from the native app that I found at https://and
Solution 1:
I found out the issue had to do with using the android.net.ConnectivityManager.TYPE_MOBILE connection type on devices running 2.0 and above. With these you need to use TYPE_MOBILE_MMS and for 1.6 devices just use TYPE_MOBILE. There is no need to disconnect the wifi.
Solution 2:
When WiFi data connections turns on, mobile data connection switches off. You need to check for both types.
Post a Comment for "Mms Sending Connectivity Issues When Wifi Is Active (android)"