Use APN defaults when no other APN information is available.
Provides an in-app source for APN info for use in the case that the device store is unavailable and the user hasn't provided local connection parameters. Only covers T-Moble USA, AT&T, and Verizon right now. Only T-Mobile is tested. Other carriers can be added and tested on an ongoing basis.pull/1/head
parent
fb21c09dbe
commit
8e2288205c
@ -0,0 +1,38 @@
|
|||||||
|
package org.thoughtcrime.securesms.mms;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.telephony.TelephonyManager;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
import static org.thoughtcrime.securesms.mms.MmsCommunication.MmsConnectionParameters;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* This class provides an in-app source for APN MMSC info for use as a fallback in
|
||||||
|
* the event that the system APN DB is unavailable and the user has not provided
|
||||||
|
* local MMSC configuration details of their own.
|
||||||
|
*/
|
||||||
|
public class ApnDefaults {
|
||||||
|
|
||||||
|
private static final Map<String, MmsConnectionParameters> paramMap =
|
||||||
|
new HashMap<String, MmsConnectionParameters>(){{
|
||||||
|
|
||||||
|
//T-Mobile USA - Tested: Works
|
||||||
|
put("310260", new MmsConnectionParameters("http://mms.msg.eng.t-mobile.com/mms/wapenc", null, null));
|
||||||
|
|
||||||
|
//AT&T - Untested
|
||||||
|
put("310410", new MmsConnectionParameters("http://mmsc.cingular.com/", "wireless.cingular.com", "80"));
|
||||||
|
|
||||||
|
//Verizon - Untested
|
||||||
|
put("310004", new MmsConnectionParameters("http://mms.vtext.com/servlets/mms", null, null));
|
||||||
|
put("310005", new MmsConnectionParameters("http://mms.vtext.com/servlets/mms", null, null));
|
||||||
|
put("310012", new MmsConnectionParameters("http://mms.vtext.com/servlets/mms", null, null));
|
||||||
|
|
||||||
|
}};
|
||||||
|
|
||||||
|
public static MmsConnectionParameters getMmsConnectionParameters(Context context) {
|
||||||
|
TelephonyManager tm = (TelephonyManager) context.getSystemService(Context.TELEPHONY_SERVICE);
|
||||||
|
return paramMap.get(tm.getSimOperator());
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue