Merge "Add a specific result code for RIL generic failures"

This commit is contained in:
TreeHugger Robot
2022-01-19 03:50:42 +00:00
committed by Android (Google) Code Review
2 changed files with 6 additions and 0 deletions

View File

@@ -43429,6 +43429,7 @@ package android.telephony {
field public static final int RESULT_RIL_BLOCKED_DUE_TO_CALL = 123; // 0x7b
field public static final int RESULT_RIL_CANCELLED = 119; // 0x77
field public static final int RESULT_RIL_ENCODING_ERR = 109; // 0x6d
field public static final int RESULT_RIL_GENERIC_ERROR = 124; // 0x7c
field public static final int RESULT_RIL_INTERNAL_ERR = 113; // 0x71
field public static final int RESULT_RIL_INVALID_ARGUMENTS = 104; // 0x68
field public static final int RESULT_RIL_INVALID_MODEM_STATE = 115; // 0x73

View File

@@ -2548,6 +2548,11 @@ public final class SmsManager {
*/
public static final int RESULT_RIL_BLOCKED_DUE_TO_CALL = 123;
/**
* A RIL error occurred during the SMS send.
*/
public static final int RESULT_RIL_GENERIC_ERROR = 124;
// SMS receiving results sent as a "result" extra in {@link Intents.SMS_REJECTED_ACTION}
/**