summaryrefslogtreecommitdiffstats
path: root/telephony/java/android/telephony/ServiceState.java
diff options
context:
space:
mode:
authorEtan Cohen <etancohen@google.com>2014-10-02 11:06:23 -0700
committerEtan Cohen <etancohen@google.com>2014-10-02 19:14:18 +0000
commit6415fba31c63cc222a8bba762a6088b5cc33c231 (patch)
tree5be7d8ca6bd6855e701e8a799e9ca25e89f3f4a1 /telephony/java/android/telephony/ServiceState.java
parent134b62ed14b830b467423082036b3222f84f291c (diff)
downloadframeworks_base-6415fba31c63cc222a8bba762a6088b5cc33c231.zip
frameworks_base-6415fba31c63cc222a8bba762a6088b5cc33c231.tar.gz
frameworks_base-6415fba31c63cc222a8bba762a6088b5cc33c231.tar.bz2
Add TD_SCDMA RAT type (already exists in RIL) and classify as CDMA.
Bug: 17784975 Change-Id: Ic887477fac1d45f547e30ed6e3c1158fb9a3b893
Diffstat (limited to 'telephony/java/android/telephony/ServiceState.java')
-rw-r--r--telephony/java/android/telephony/ServiceState.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/telephony/java/android/telephony/ServiceState.java b/telephony/java/android/telephony/ServiceState.java
index 1ee390f..8e43772 100644
--- a/telephony/java/android/telephony/ServiceState.java
+++ b/telephony/java/android/telephony/ServiceState.java
@@ -146,6 +146,8 @@ public class ServiceState implements Parcelable {
* @hide
*/
public static final int RIL_RADIO_TECHNOLOGY_GSM = 16;
+ /** @hide */
+ public static final int RIL_RADIO_TECHNOLOGY_TD_SCDMA = 17;
/**
* Available registration states for GSM, UMTS and CDMA.
@@ -859,6 +861,7 @@ public class ServiceState implements Parcelable {
|| radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_0
|| radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_A
|| radioTechnology == RIL_RADIO_TECHNOLOGY_EVDO_B
- || radioTechnology == RIL_RADIO_TECHNOLOGY_EHRPD;
+ || radioTechnology == RIL_RADIO_TECHNOLOGY_EHRPD
+ || radioTechnology == RIL_RADIO_TECHNOLOGY_TD_SCDMA;
}
}