Loading services/core/java/com/android/server/pm/PackageInstallerSession.java +2 −9 Original line number Diff line number Diff line Loading @@ -1134,15 +1134,8 @@ public class PackageInstallerSession extends IPackageInstallerSession.Stub { mResolvedInstructionSets.add(archSubDir.getName()); List<File> oatFiles = Arrays.asList(archSubDir.listFiles()); // Only add compiled files associated with the base. // Once b/62269291 is resolved, we can add all compiled files again. for (File oatFile : oatFiles) { if (oatFile.getName().equals("base.art") || oatFile.getName().equals("base.odex") || oatFile.getName().equals("base.vdex")) { mResolvedInheritedFiles.add(oatFile); } if (!oatFiles.isEmpty()) { mResolvedInheritedFiles.addAll(oatFiles); } } } Loading Loading
services/core/java/com/android/server/pm/PackageInstallerSession.java +2 −9 Original line number Diff line number Diff line Loading @@ -1134,15 +1134,8 @@ public class PackageInstallerSession extends IPackageInstallerSession.Stub { mResolvedInstructionSets.add(archSubDir.getName()); List<File> oatFiles = Arrays.asList(archSubDir.listFiles()); // Only add compiled files associated with the base. // Once b/62269291 is resolved, we can add all compiled files again. for (File oatFile : oatFiles) { if (oatFile.getName().equals("base.art") || oatFile.getName().equals("base.odex") || oatFile.getName().equals("base.vdex")) { mResolvedInheritedFiles.add(oatFile); } if (!oatFiles.isEmpty()) { mResolvedInheritedFiles.addAll(oatFiles); } } } Loading