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

Commit d6c009d4 authored by Ng Zhi An's avatar Ng Zhi An Committed by android-build-merger
Browse files

Skip hal v1 check after p on low ram devices am: a0eb7e41 am: f8f519f4

am: cab24d27

Change-Id: I5642eb8b968849c8a60488f372e5eac8bff77637
parents 7ff9564b cab24d27
Loading
Loading
Loading
Loading
+8 −0
Original line number Diff line number Diff line
@@ -1172,6 +1172,14 @@ TEST_F(CameraHidlTest, noHal1AfterP) {
    }
    ASSERT_GT(firstApiLevel, 0); // first_api_level must exist

    // all devices with first API level == 28 and <= 1GB of RAM must set low_ram
    // and thus be allowed to continue using HAL1
    if ((firstApiLevel == HAL1_PHASE_OUT_API_LEVEL) &&
        (property_get_bool("ro.config.low_ram", /*default*/ false))) {
        ALOGI("Hal1 allowed for low ram device");
        return;
    }

    if (firstApiLevel >= HAL1_PHASE_OUT_API_LEVEL) {
        hidl_vec<hidl_string> cameraDeviceNames = getCameraDeviceNames(mProvider);
        for (const auto& name : cameraDeviceNames) {