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

Commit 6ba9afd1 authored by Bart Sears's avatar Bart Sears Committed by Gerrit Code Review
Browse files

Merge "Revert "Remove ART APEX from the bootstrap apexes""

parents ceadc233 6d869dd6
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -127,7 +127,8 @@ static bool ExpandArgsAndExecv(const std::vector<std::string>& args, bool sigsto

static bool AreRuntimeApexesReady() {
    struct stat buf;
    return stat("/apex/com.android.runtime/", &buf) == 0;
    return stat("/apex/com.android.art/", &buf) == 0 &&
           stat("/apex/com.android.runtime/", &buf) == 0;
}

unsigned long Service::next_start_order_ = 1;