Feature
: Feature Toggle Base Mechanism
#537
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Problem Description
The Android app previously lacked support for a feature toggle mechanism, which is useful for dynamically enabling or disabling functionality via the backend.
Available features are listed in the
/management/info
endpoint — the same endpoint used for force update checks. Therefore, the logic for force update and feature availability has been merged into a single flow.Additionally, the old system waited 2 days before rechecking for updates. Since feature availability needs to be checked more frequently, this delay has been removed.
Changes
Steps for testing
I have added the same step for force update please check that the logic works after user logged in. (In ios this logic trigger after logged in check)
Case 1: No Update Required
The update screen should NOT be displayed if the server version matches the local app version.
Case 2: Update Required
The update screen should be displayed if the server requires a newer version, and clicking the "Download" button should navigate to the Google Play Store.
Case 3: Feature Toggle
Screenshots