summaryrefslogtreecommitdiffstats
path: root/updater_sample
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2018-06-15 11:30:44 +0200
committerandroid-build-team Robot <android-build-team-robot@google.com>2018-06-15 11:30:44 +0200
commit16cda5abbac102c1003ad88bb633f7c12e32df7e (patch)
tree9ae3f7e14f980805a70e7a639623f93afb7b0ee2 /updater_sample
parentSnap for 4832164 from 821d03bb6f53ac4ef772fa39159a4beba103ffd5 to qt-release (diff)
parentMerge "updater_sample: add metadata mismatch error code" am: 9ed4b41478 am: c48f0b6923 (diff)
downloadandroid_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar.gz
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar.bz2
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar.lz
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar.xz
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.tar.zst
android_bootable_recovery-16cda5abbac102c1003ad88bb633f7c12e32df7e.zip
Diffstat (limited to 'updater_sample')
-rw-r--r--updater_sample/src/com/example/android/systemupdatersample/util/UpdateEngineErrorCodes.java1
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");
}