Merge "Skip calling verify_package_compatibility when resuming." am: 98beb6414b
am: c4148b529a
Change-Id: I7f59a1eb51e83443b77f8ae61139af12149eaca8
diff --git a/install.cpp b/install.cpp
index 05f9af7..dbc815d 100644
--- a/install.cpp
+++ b/install.cpp
@@ -606,8 +606,8 @@
return INSTALL_CORRUPT;
}
- // Additionally verify the compatibility of the package.
- if (!verify_package_compatibility(zip)) {
+ // Additionally verify the compatibility of the package if it's a fresh install.
+ if (retry_count == 0 && !verify_package_compatibility(zip)) {
log_buffer->push_back(android::base::StringPrintf("error: %d", kPackageCompatibilityFailure));
return INSTALL_CORRUPT;
}