Loading services/core/java/com/android/server/pm/ApexManager.java +7 −2 Original line number Diff line number Diff line Loading @@ -1031,12 +1031,17 @@ public abstract class ApexManager { if (files != null) { for (File file : files) { if (file.isDirectory() && !file.getName().contains("@")) { boolean skip = false; for (String skipDir : skipDirs) { if (file.getName().equals(skipDir)) { continue; skip = true; break; } } if (!skip) { result.add( new ActiveApexInfo(file, Environment.getRootDirectory())); } result.add(new ActiveApexInfo(file, Environment.getRootDirectory())); } } } Loading Loading
services/core/java/com/android/server/pm/ApexManager.java +7 −2 Original line number Diff line number Diff line Loading @@ -1031,12 +1031,17 @@ public abstract class ApexManager { if (files != null) { for (File file : files) { if (file.isDirectory() && !file.getName().contains("@")) { boolean skip = false; for (String skipDir : skipDirs) { if (file.getName().equals(skipDir)) { continue; skip = true; break; } } if (!skip) { result.add( new ActiveApexInfo(file, Environment.getRootDirectory())); } result.add(new ActiveApexInfo(file, Environment.getRootDirectory())); } } } Loading