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

Commit b4ed7803 authored by Aishwarya Mallampati's avatar Aishwarya Mallampati Committed by Android (Google) Code Review
Browse files

Merge "Added getMaxCharPerTextMessage() API."

parents d31232a0 fbc24970
Loading
Loading
Loading
Loading
+9 −0
Original line number Diff line number Diff line
@@ -5263,6 +5263,15 @@ public abstract class Phone extends Handler implements PhoneInternalInterface {
        mCi.stopSendingSatellitePointingInfo(result);
    }

    /**
     * Get maximum number of characters per text message on satellite.
     * @param result - message object which contains maximum characters on success
     *               and error code on failure.
     */
    public void getMaxCharactersPerSatelliteTextMessage(Message result) {
        mCi.getMaxCharactersPerSatelliteTextMessage(result);
    }

    /**
     * Registers for pointing info changed from satellite modem.
     *
+0 −1
Original line number Diff line number Diff line
@@ -6026,7 +6026,6 @@ public class RILUtils {
            CommandException.Error error) {
        switch (error) {
            case INTERNAL_ERR:
                return SatelliteManager.SATELLITE_SERVICE_INTERNAL_ERROR;
            case MODEM_ERR:
                return SatelliteManager.SATELLITE_SERVICE_MODEM_ERROR;
            case SYSTEM_ERR: