Merge "Also populate lastUpdateMillis in ActivateFlattenedApexesIfPossible" into sc-dev

This commit is contained in:
Nikita Ioffe 2021-07-08 13:14:05 +00:00 committed by Android (Google) Code Review
commit b7f123fb66
1 changed files with 2 additions and 1 deletions

View File

@ -158,7 +158,8 @@ static bool ActivateFlattenedApexesIfPossible() {
auto on_activate = [&](const std::string& apex_path,
const apex::proto::ApexManifest& apex_manifest) {
apex_infos.emplace_back(apex_manifest.name(), apex_path, apex_path, apex_manifest.version(),
apex_manifest.versionname(), /*isFactory=*/true, /*isActive=*/true);
apex_manifest.versionname(), /*isFactory=*/true, /*isActive=*/true,
/* lastUpdateMillis= */ 0);
};
for (const auto& dir : kBuiltinDirsForApexes) {