I am using the google maps geolocation API. There is a field in there named radioType and the only supported values are GSM,CDMA,WCDMA, and LTE. Although these field is optional, I
Solution 1:
You can use telephonyManager to get the current network type
final TelephonyManager telephony = (TelephonyManager) getSystemService(Context.TELEPHONY_SERVICE);
and use the following function to get the network type
telephony.getNetworkType();
Share
Post a Comment
for "How To Get The Radio Type Of Android Phone(gsm,cdma,wcdma,lte)"
Post a Comment for "How To Get The Radio Type Of Android Phone(gsm,cdma,wcdma,lte)"