OSDN Git Service

Merge "A test api to override carrier information" into pi-dev
authorChen Xu <fionaxu@google.com>
Tue, 3 Apr 2018 01:14:24 +0000 (01:14 +0000)
committerAndroid (Google) Code Review <android-gerrit@google.com>
Tue, 3 Apr 2018 01:14:24 +0000 (01:14 +0000)
1  2 
api/test-current.txt
telephony/java/android/telephony/TelephonyManager.java

Simple merge
@@@ -7803,9 -7844,51 +7811,54 @@@ public class TelephonyManager 
              }
          } catch (RemoteException ex) {
              // This could happen if binder process crashes.
 +            if (!isSystemProcess()) {
 +                ex.rethrowAsRuntimeException();
 +            }
          }
      }
+     /**
+      * A test API to override carrier information including mccmnc, imsi, iccid, gid1, gid2,
+      * plmn and spn. This would be handy for, eg, forcing a particular carrier id, carrier's config
+      * (also any country or carrier overlays) to be loaded when using a test SIM with a call box.
+      *
+      * <p>Requires Permission:
+      *   {@link android.Manifest.permission#MODIFY_PHONE_STATE MODIFY_PHONE_STATE}
+      *
+      * @hide
+      */
+     @TestApi
+     public void setCarrierTestOverride(String mccmnc, String imsi, String iccid, String gid1,
+             String gid2, String plmn, String spn) {
+         try {
+             ITelephony telephony = getITelephony();
+             if (telephony != null) {
+                 telephony.setCarrierTestOverride(
+                         getSubId(), mccmnc, imsi, iccid, gid1, gid2, plmn, spn);
+             }
+         } catch (RemoteException ex) {
+             // This could happen if binder process crashes.
+         }
+     }
+     /**
+      * A test API to return installed carrier id list version
+      *
+      * <p>Requires Permission:
+      *   {@link android.Manifest.permission#READ_PRIVILEGED_PHONE_STATE READ_PRIVILEGED_PHONE_STATE}
+      *
+      * @hide
+      */
+     @TestApi
+     public int getCarrierIdListVersion() {
+         try {
+             ITelephony telephony = getITelephony();
+             if (telephony != null) {
+                 return telephony.getCarrierIdListVersion(getSubId());
+             }
+         } catch (RemoteException ex) {
+             // This could happen if binder process crashes.
+         }
+         return UNKNOWN_CARRIER_ID_LIST_VERSION;
+     }
  }