Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8dc741fd authored by nharold's avatar nharold Committed by android-build-merger
Browse files

Merge "Add hidden APIs to get the cached SignalStrength from SST" am:...

Merge "Add hidden APIs to get the cached SignalStrength from SST" am: 5b8a9c87 am: cca5fbe7 am: 8d361350
am: c5c4f5a4

Change-Id: I8f8d3c142a6a01cfe47a1c14e349b04ed97d857a
parents 0ea47c18 c5c4f5a4
Loading
Loading
Loading
Loading
+21 −0
Original line number Diff line number Diff line
@@ -6611,5 +6611,26 @@ public class TelephonyManager {
        }
        return false;
    }

    /**
     * Get the most recently available signal strength information.
     *
     * Get the most recent SignalStrength information reported by the modem. Due
     * to power saving this information may not always be current.
     * @return the most recent cached signal strength info from the modem
     * @hide
     */
    @Nullable
    public SignalStrength getSignalStrength() {
        try {
            ITelephony service = getITelephony();
            if (service != null) {
                return service.getSignalStrength(getSubId());
            }
        } catch (RemoteException e) {
            Log.e(TAG, "Error calling ITelephony#getSignalStrength", e);
        }
        return null;
    }
}
+12 −0
Original line number Diff line number Diff line
@@ -34,6 +34,7 @@ import android.telephony.NeighboringCellInfo;
import android.telephony.NetworkScanRequest;
import android.telephony.RadioAccessFamily;
import android.telephony.ServiceState;
import android.telephony.SignalStrength;
import android.telephony.TelephonyHistogram;
import android.telephony.VisualVoicemailSmsFilterSettings;
import com.android.ims.internal.IImsServiceController;
@@ -1343,4 +1344,15 @@ interface ITelephony {
     * @hide
     */
    boolean getEmergencyCallbackMode(int subId);

    /**
     * Get the most recently available signal strength information.
     *
     * Get the most recent SignalStrength information reported by the modem. Due
     * to power saving this information may not always be current.
     * @param subId Subscription index
     * @return the most recent cached signal strength info from the modem
     * @hide
     */
    SignalStrength getSignalStrength(int subId);
}