diff options
| author | 2019-03-04 14:42:17 +0000 | |
|---|---|---|
| committer | 2019-03-04 14:42:17 +0000 | |
| commit | 0bbf61f024eccd569c9886c78c041acc59f2e04a (patch) | |
| tree | 7301e1040ff3f82368af12d465e970ee5caa3546 /api | |
| parent | 898caeeaedc7a025a7f2b9fe2122c7972426f0fd (diff) | |
| parent | 2fac9dd3d4d58229ff9edad75b00a28befb2ffc2 (diff) | |
Merge "Revert "Revert "Revert "Correct nullability and final constraints on new APIs.""""
Diffstat (limited to 'api')
| -rwxr-xr-x | api/current.txt | 18 | ||||
| -rw-r--r-- | api/system-current.txt | 4 |
2 files changed, 11 insertions, 11 deletions
diff --git a/api/current.txt b/api/current.txt index 44ddde2a429e..78702927ddc8 100755 --- a/api/current.txt +++ b/api/current.txt @@ -41262,14 +41262,14 @@ package android.telecom { field public static final android.os.Parcelable.Creator<android.telecom.CallIdentification> CREATOR; } - public static final class CallIdentification.Builder { + public static class CallIdentification.Builder { ctor public CallIdentification.Builder(); - method @NonNull public android.telecom.CallIdentification build(); - method @NonNull public android.telecom.CallIdentification.Builder setDescription(@Nullable CharSequence); - method @NonNull public android.telecom.CallIdentification.Builder setDetails(@Nullable CharSequence); - method @NonNull public android.telecom.CallIdentification.Builder setName(@Nullable CharSequence); - method @NonNull public android.telecom.CallIdentification.Builder setNuisanceConfidence(int); - method @NonNull public android.telecom.CallIdentification.Builder setPhoto(@Nullable android.graphics.drawable.Icon); + method public android.telecom.CallIdentification build(); + method public android.telecom.CallIdentification.Builder setDescription(@Nullable CharSequence); + method public android.telecom.CallIdentification.Builder setDetails(@Nullable CharSequence); + method public android.telecom.CallIdentification.Builder setName(@Nullable CharSequence); + method public android.telecom.CallIdentification.Builder setNuisanceConfidence(int); + method public android.telecom.CallIdentification.Builder setPhoto(@Nullable android.graphics.drawable.Icon); } public abstract class CallRedirectionService extends android.app.Service { @@ -41890,8 +41890,8 @@ package android.telecom { method public android.telecom.PhoneAccount getPhoneAccount(android.telecom.PhoneAccountHandle); method @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) public java.util.List<android.telecom.PhoneAccountHandle> getSelfManagedPhoneAccounts(); method public android.telecom.PhoneAccountHandle getSimCallManager(); - method @Nullable public String getSystemDialerPackage(); - method @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) @Nullable public android.telecom.PhoneAccountHandle getUserSelectedOutgoingPhoneAccount(); + method public String getSystemDialerPackage(); + method @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) public android.telecom.PhoneAccountHandle getUserSelectedOutgoingPhoneAccount(); method @RequiresPermission(android.Manifest.permission.READ_PHONE_STATE) public String getVoiceMailNumber(android.telecom.PhoneAccountHandle); method @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public boolean handleMmi(String); method @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public boolean handleMmi(String, android.telecom.PhoneAccountHandle); diff --git a/api/system-current.txt b/api/system-current.txt index 83fff9213c87..41d8eea73013 100644 --- a/api/system-current.txt +++ b/api/system-current.txt @@ -5491,8 +5491,8 @@ package android.telecom { method @RequiresPermission(anyOf={android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE, android.Manifest.permission.READ_PHONE_STATE}) public java.util.List<android.telecom.PhoneAccountHandle> getPhoneAccountsSupportingScheme(String); method @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public boolean isInEmergencyCall(); method @RequiresPermission(anyOf={android.Manifest.permission.READ_PRIVILEGED_PHONE_STATE, android.Manifest.permission.READ_PHONE_STATE}) public boolean isRinging(); - method @Deprecated @RequiresPermission(allOf={android.Manifest.permission.MODIFY_PHONE_STATE, android.Manifest.permission.WRITE_SECURE_SETTINGS}) public boolean setDefaultDialer(@Nullable String); - method @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public void setUserSelectedOutgoingPhoneAccount(@Nullable android.telecom.PhoneAccountHandle); + method @Deprecated @RequiresPermission(allOf={android.Manifest.permission.MODIFY_PHONE_STATE, android.Manifest.permission.WRITE_SECURE_SETTINGS}) public boolean setDefaultDialer(String); + method @RequiresPermission(android.Manifest.permission.MODIFY_PHONE_STATE) public void setUserSelectedOutgoingPhoneAccount(android.telecom.PhoneAccountHandle); field public static final String EXTRA_CALL_BACK_INTENT = "android.telecom.extra.CALL_BACK_INTENT"; field public static final String EXTRA_CLEAR_MISSED_CALLS_INTENT = "android.telecom.extra.CLEAR_MISSED_CALLS_INTENT"; field public static final String EXTRA_CONNECTION_SERVICE = "android.telecom.extra.CONNECTION_SERVICE"; |