Added PHONE_TYPE_CDMA_LTE

Bug: 25793157
Change-Id: I06b1033fc6775edb679ac6f5de4556a3b1fea977
This commit is contained in:
Amit Mahajan
2015-11-09 11:38:19 -08:00
parent c38a5d7da1
commit 44297f3eef
2 changed files with 4 additions and 0 deletions

View File

@@ -59,6 +59,9 @@ public class PhoneConstants {
public static final int PHONE_TYPE_SIP = RILConstants.SIP_PHONE;
public static final int PHONE_TYPE_THIRD_PARTY = RILConstants.THIRD_PARTY_PHONE;
public static final int PHONE_TYPE_IMS = RILConstants.IMS_PHONE;
// Currently this is used only to differentiate CDMA and CDMALTE Phone in GsmCdma* files. For
// anything outside of that, a cdma + lte phone is still CDMA_PHONE
public static final int PHONE_TYPE_CDMA_LTE = RILConstants.CDMA_LTE_PHONE;
// Modes for LTE_ON_CDMA
public static final int LTE_ON_CDMA_UNKNOWN = RILConstants.LTE_ON_CDMA_UNKNOWN;

View File

@@ -118,6 +118,7 @@ public interface RILConstants {
int SIP_PHONE = 3;
int THIRD_PARTY_PHONE = 4;
int IMS_PHONE = 5;
int CDMA_LTE_PHONE = 6;
int LTE_ON_CDMA_UNKNOWN = -1;
int LTE_ON_CDMA_FALSE = 0;