Add LTE_CA RAT Type to Telephony

Bug: 30507959
Change-Id: Ibf55ae0d9cbc4f7fd2cb0b36a816f80046a4cb66
diff --git a/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyConstants.java b/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyConstants.java
index c8b1ff2..09935c6 100644
--- a/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyConstants.java
+++ b/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyConstants.java
@@ -164,6 +164,7 @@
     public static final String RAT_GSM = "GSM";
     public static final String RAT_TD_SCDMA = "TD_SCDMA";
     public static final String RAT_GLOBAL = "GLOBAL";
+    public static final String RAT_LTE_CA = "LTE_CA";
     public static final String RAT_UNKNOWN = "UNKNOWN";
 
     /**
diff --git a/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyUtils.java b/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyUtils.java
index 09e161f..94d1a11 100644
--- a/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyUtils.java
+++ b/Common/src/com/googlecode/android_scripting/facade/telephony/TelephonyUtils.java
@@ -333,6 +333,8 @@
                 return TelephonyConstants.RAT_IWLAN;
             case TelephonyManager.NETWORK_TYPE_IDEN:
                 return TelephonyConstants.RAT_IDEN;
+            case TelephonyManager.NETWORK_TYPE_LTE_CA:
+                return TelephonyConstants.RAT_LTE_CA;
         }
         return TelephonyConstants.RAT_UNKNOWN;
     }