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

Commit b95f169a authored by Gabriel Peal's avatar Gabriel Peal Committed by Santos Cordon
Browse files

Made all classes required for an InCallService @SystemApi

Bug: 17153048
Change-Id: I6b46969e976a47fd814022939a99b823fcb7b2bd
parent 3a6eba01
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.telecomm;

import android.annotation.SystemApi;
import android.app.PendingIntent;
import android.net.Uri;
import android.os.Bundle;
@@ -34,6 +35,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
 *
 * {@hide}
 */
@SystemApi
public final class Call {
    /**
     * The state of a {@code Call} when newly created.
+3 −0
Original line number Diff line number Diff line
@@ -16,6 +16,8 @@

package android.telecomm;

import android.annotation.SystemApi;

/**
 * Defines call-state constants of the different states in which a call can exist. Although states
 * have the notion of normal transitions, due to the volatile nature of telephony systems, code
@@ -24,6 +26,7 @@ package android.telecomm;
 *
 * {@hide}
 */
@SystemApi
public final class CallState {

    private CallState() {}
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.telecomm;

import android.annotation.SystemApi;
import android.annotation.SdkConstant;
import android.app.PendingIntent;
import android.app.Service;
@@ -39,6 +40,7 @@ import java.lang.String;
 *
 * {@hide}
 */
@SystemApi
public abstract class InCallService extends Service {

    /**
+2 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@

package android.telecomm;

import android.annotation.SystemApi;
import android.app.PendingIntent;
import android.util.ArrayMap;

@@ -31,6 +32,7 @@ import java.util.concurrent.CopyOnWriteArrayList;
 *
 * {@hide}
 */
@SystemApi
public final class Phone {

    public abstract static class Listener {