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

Commit 66309e2b authored by Jeff Sharkey's avatar Jeff Sharkey Committed by Narayan Kamath
Browse files

Fix OEM native library path bug.

Bug: 13340779

(cherry picked from commit 7d3328d14bbbee01a9de1ff5b13b0446c709d835)

Change-Id: I1b4c5d138cafe3651d475ca1e048f495ff6c5f10
parent 986b901a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -5246,7 +5246,7 @@ public class PackageManagerService extends IPackageManager.Stub {
        if (FileUtils.contains(Environment.getRootDirectory(), codePath)) {
            codeRoot = Environment.getRootDirectory();
        } else if (FileUtils.contains(Environment.getOemDirectory(), codePath)) {
            codeRoot = Environment.getRootDirectory();
            codeRoot = Environment.getOemDirectory();
        } else if (FileUtils.contains(Environment.getVendorDirectory(), codePath)) {
            codeRoot = Environment.getVendorDirectory();
        } else {