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

Commit 9bacdabf authored by Abhijith Shastry's avatar Abhijith Shastry
Browse files

Remove deprecated API launchManageBlockedNumbersActivity

BUG: 27364137
Change-Id: Ie608c3f75d5fe353a1ba127b0da763c421401eb8
parent b1a684c6
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -36618,7 +36618,6 @@ package android.telecom {
    method public boolean handleMmi(java.lang.String, android.telecom.PhoneAccountHandle);
    method public boolean isInCall();
    method public boolean isVoiceMailNumber(android.telecom.PhoneAccountHandle, java.lang.String);
    method public deprecated void launchManageBlockedNumbersActivity();
    method public void placeCall(android.net.Uri, android.os.Bundle);
    method public void registerPhoneAccount(android.telecom.PhoneAccount);
    method public void showInCallScreen(boolean);
+0 −1
Original line number Diff line number Diff line
@@ -39301,7 +39301,6 @@ package android.telecom {
    method public boolean isRinging();
    method public boolean isTtySupported();
    method public boolean isVoiceMailNumber(android.telecom.PhoneAccountHandle, java.lang.String);
    method public deprecated void launchManageBlockedNumbersActivity();
    method public void placeCall(android.net.Uri, android.os.Bundle);
    method public void registerPhoneAccount(android.telecom.PhoneAccount);
    method public void showInCallScreen(boolean);
+0 −1
Original line number Diff line number Diff line
@@ -36690,7 +36690,6 @@ package android.telecom {
    method public boolean handleMmi(java.lang.String, android.telecom.PhoneAccountHandle);
    method public boolean isInCall();
    method public boolean isVoiceMailNumber(android.telecom.PhoneAccountHandle, java.lang.String);
    method public deprecated void launchManageBlockedNumbersActivity();
    method public void placeCall(android.net.Uri, android.os.Bundle);
    method public void registerPhoneAccount(android.telecom.PhoneAccount);
    method public void showInCallScreen(boolean);
+0 −19
Original line number Diff line number Diff line
@@ -1432,25 +1432,6 @@ public class TelecomManager {
        return result;
    }

    /**
     * Launches the {@link android.app.Activity} to manage blocked numbers.
     * <p> This method displays the UI to manage blocked numbers only if
     * {@link android.provider.BlockedNumberContract#canCurrentUserBlockNumbers(Context)} returns
     * {@code true} for the current user.
     * @deprecated Use {@link #createManageBlockedNumbersIntent()} instead.
     */
    // TODO: Delete this.
    public void launchManageBlockedNumbersActivity() {
        ITelecomService service = getTelecomService();
        if (service != null) {
            try {
                service.launchManageBlockedNumbersActivity(mContext.getPackageName());
            } catch (RemoteException e) {
                Log.e(TAG, "Error calling ITelecomService#manageBlockedNumbers", e);
            }
        }
    }

    /**
     * Creates the {@link Intent} which can be used with {@link Context#startActivity(Intent)} to
     * launch the activity to manage blocked numbers.
+0 −6
Original line number Diff line number Diff line
@@ -245,12 +245,6 @@ interface ITelecomService {
     */
    boolean setDefaultDialer(in String packageName);

    /**
    * @see TelecomServiceImpl#launchManageBlockedNumbersActivity
    **/
    // TODO: Delete this.
    void launchManageBlockedNumbersActivity(in String callingPackageName);

    /**
    * @see TelecomServiceImpl#createManageBlockedNumbersIntent
    **/