Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 76aa10ba authored by Jeff Hao's avatar Jeff Hao Committed by android-build-merger
Browse files

Merge "When updating a split app, copy compiled files from base.apk only." into oc-dev

am: 08b3fd96

Change-Id: Iabcb03567e71585898f60160a3e0a5c8e6870f3b
parents e9bec628 08b3fd96
Loading
Loading
Loading
Loading
+9 −2
Original line number Diff line number Diff line
@@ -862,8 +862,15 @@ public class PackageInstallerSession extends IPackageInstallerSession.Stub {

                        mResolvedInstructionSets.add(archSubDir.getName());
                        List<File> oatFiles = Arrays.asList(archSubDir.listFiles());
                        if (!oatFiles.isEmpty()) {
                            mResolvedInheritedFiles.addAll(oatFiles);

                        // 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);
                            }
                        }
                    }
                }