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

Commit eca0d901 authored by Abodunrinwa Toki's avatar Abodunrinwa Toki Committed by android-build-merger
Browse files

Merge "SmartSelection ConfigUpdater: Ignore version numbers" into oc-dev am: 924d482a

am: cfb9a94c

Change-Id: Iaaf07f7eaa4f36611285862f2d00caee3b27131f
parents f3d39e59 cfb9a94c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -162,7 +162,7 @@ public class ConfigUpdateInstallReceiver extends BroadcastReceiver {
        }
    }

    private boolean verifyVersion(int current, int alternative) {
    protected boolean verifyVersion(int current, int alternative) {
        return (current < alternative);
    }

+5 −1
Original line number Diff line number Diff line
@@ -25,5 +25,9 @@ public class SmartSelectionInstallReceiver extends ConfigUpdateInstallReceiver {
            "metadata/smartselection",
            "version");
    }
}

    @Override
    protected boolean verifyVersion(int current, int alternative) {
        return true;
    }
}