From 4d76f364226cf049bfc850a339ea2cf63e3ae3e7 Mon Sep 17 00:00:00 2001 From: John Wang Date: Fri, 3 Dec 2010 16:52:36 -0800 Subject: Add iDEN to getNetworkTypeName. For bug 2667143. Integrated Digital Enhanced Network (iDEN) is a mobile telecommunications technology which provides its users the benefits of a trunked radio and a cellular telephone. Change-Id: I4a1f5dbdd22a2c4ce5252688053ec4a47805d6b9 --- telephony/java/android/telephony/TelephonyManager.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 9ef41f2ca1eb..38f57c997f90 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -477,6 +477,8 @@ public class TelephonyManager { return "LTE"; case NETWORK_TYPE_EHRPD: return "CDMA - eHRPD"; + case NETWORK_TYPE_IDEN: + return "iDEN"; default: return "UNKNOWN"; } -- cgit v1.2.3-59-g8ed1b