Stop creating sdk data directories due to boot time regression am: f4aae9ee08
Original change: https://android-review.googlesource.com/c/platform/frameworks/native/+/2006951
Change-Id: Id7cc97bd6b3461b5d9d3b62ce503ed45769d21c2
diff --git a/cmds/installd/InstalldNativeService.cpp b/cmds/installd/InstalldNativeService.cpp
index 7c21944..dd7c3d3 100644
--- a/cmds/installd/InstalldNativeService.cpp
+++ b/cmds/installd/InstalldNativeService.cpp
@@ -722,7 +722,9 @@
}
}
- {
+ // TODO(b/220095381): Due to boot time regression, we have omitted call to
+ // createAppDirectoryForSupplementalData from here temporarily (unless it's for testing)
+ if (uuid_ != nullptr && strcmp(uuid_, "TEST") == 0) {
auto status = createAppDirectoryForSupplementalData(uuid, packageName, userId, appId,
previousAppId, seInfo, flags);
if (!status.isOk()) {