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

Commit 645a920f authored by Narayan Kamath's avatar Narayan Kamath Committed by Gerrit Code Review
Browse files

Merge "Fix OEM native library path bug."

parents 986b901a 66309e2b
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 {