commit | 9ed4b4147876a01aec4599e21d6df9a5a5475151 | [log] [tgz] |
---|---|---|
author | Zhomart Mukhamejanov <zhomart@google.com> | Thu Jun 14 17:15:58 2018 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Thu Jun 14 17:15:58 2018 +0000 |
tree | b4d2140baef7e0e4bb3f53463ad8e2024d64159d | |
parent | c53639d5e35d15c58602f3765f47f1a4881953f5 [diff] | |
parent | ebee98df6fd152a66e200fdd02b1ed37f547c494 [diff] |
Merge "updater_sample: add metadata mismatch error code"
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 7d55ff8..13df88b 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 @@ 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"); }