diff options
| author | 2024-02-28 21:03:56 +0000 | |
|---|---|---|
| committer | 2024-02-28 21:03:56 +0000 | |
| commit | 6a6940a01d335c2acccc6f35c23ea97f2c7835db (patch) | |
| tree | d7db35f2c35ce24c3db3e33334ee726fdf22abca | |
| parent | 7d02389f5719eb614edff6e8d2486405f1c6750d (diff) | |
Move getLastKnownCellIdentity to its own flag.
Moving this API to a different flag so that it won't block 24Q3; it will
launch is 25Q3.
Test: This API has a CTS test.
Bug: 327454165
Change-Id: Ibf99d4a0c770b9456032fb1ac5f28bb533136118
| -rw-r--r-- | core/api/system-current.txt | 2 | ||||
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 2 | 
2 files changed, 2 insertions, 2 deletions
diff --git a/core/api/system-current.txt b/core/api/system-current.txt index b2db7c196abe..39808ff3d4c1 100644 --- a/core/api/system-current.txt +++ b/core/api/system-current.txt @@ -15325,7 +15325,7 @@ package android.telephony {      method @RequiresPermission(android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE) public int getEmergencyNumberDbVersion();      method @Nullable @RequiresPermission(android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE) public String getIsimDomain();      method @Nullable @RequiresPermission(android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE) public String getIsimIst(); -    method @FlaggedApi("com.android.server.telecom.flags.telecom_resolve_hidden_dependencies") @Nullable @RequiresPermission(allOf={android.Manifest.permission.ACCESS_FINE_LOCATION, android.Manifest.permission.ACCESS_LAST_KNOWN_CELL_ID}) public android.telephony.CellIdentity getLastKnownCellIdentity(); +    method @FlaggedApi("com.android.server.telecom.flags.get_last_known_cell_identity") @Nullable @RequiresPermission(allOf={android.Manifest.permission.ACCESS_FINE_LOCATION, android.Manifest.permission.ACCESS_LAST_KNOWN_CELL_ID}) public android.telephony.CellIdentity getLastKnownCellIdentity();      method @Deprecated @NonNull @RequiresPermission(android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE) public java.util.Map<java.lang.Integer,java.lang.Integer> getLogicalToPhysicalSlotMapping();      method public int getMaxNumberOfSimultaneouslyActiveSims();      method public static long getMaxNumberVerificationTimeoutMillis(); diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 626a2e574881..9d277c8fcf10 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -18535,7 +18535,7 @@ public class TelephonyManager {       * @hide       */      @SystemApi -    @FlaggedApi(com.android.server.telecom.flags.Flags.FLAG_TELECOM_RESOLVE_HIDDEN_DEPENDENCIES) +    @FlaggedApi(com.android.server.telecom.flags.Flags.FLAG_GET_LAST_KNOWN_CELL_IDENTITY)      @RequiresPermission(allOf = {Manifest.permission.ACCESS_FINE_LOCATION,              Manifest.permission.ACCESS_LAST_KNOWN_CELL_ID})      public @Nullable CellIdentity getLastKnownCellIdentity() {  |