Detect the phone's network programmatically to send sms
public int getNetworkType() {
int type = 0;
int networkType = RadioInfo.getNetworkType();
switch (networkType) {
case RadioInfo.NETWORK_GPRS: // GSM
type = 0;
break;
case RadioInfo.NETWORK_CDMA: //CDMA
type = 1;
break;
case RadioInfo.NETWORK_IDEN: //GSM
type = 0;
break;
default:
type = 0; //GSM
break;
}
return type;
}