diff options
author | Zhomart Mukhamejanov <zhomart@google.com> | 2018-06-14 19:15:58 +0200 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2018-06-14 19:15:58 +0200 |
commit | 9ed4b4147876a01aec4599e21d6df9a5a5475151 (patch) | |
tree | b4d2140baef7e0e4bb3f53463ad8e2024d64159d | |
parent | Merge "tests: Skip ScreenRecoveryUITest on gr_init failure." (diff) | |
parent | updater_sample: add metadata mismatch error code (diff) | |
download | android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar.gz android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar.bz2 android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar.lz android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar.xz android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.tar.zst android_bootable_recovery-9ed4b4147876a01aec4599e21d6df9a5a5475151.zip |
-rw-r--r-- | updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java b/updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java index 7d55ff8fc..13df88b18 100644 --- a/updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java +++ b/updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java @@ -54,6 +54,7 @@ public final class UpdateEngineErrorCodes { CODE_TO_NAME_MAP.put(12, "DOWNLOAD_PAYLOAD_VERIFICATION_ERROR"); CODE_TO_NAME_MAP.put(15, "NEW_ROOTFS_VERIFICATION_ERROR"); CODE_TO_NAME_MAP.put(20, "DOWNLOAD_STATE_INITIALIZATION_ERROR"); + CODE_TO_NAME_MAP.put(26, "DOWNLOAD_METADATA_SIGNATURE_MISMATCH"); CODE_TO_NAME_MAP.put(48, "USER_CANCELLED"); CODE_TO_NAME_MAP.put(52, "UPDATED_BUT_NOT_ACTIVE"); } |