Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: Feature Toggle Base Mechanism #537

Open
wants to merge 5 commits into
base: develop
Choose a base branch
from

Conversation

eylulnc
Copy link
Contributor

@eylulnc eylulnc commented Apr 3, 2025

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

  • The update check now parses feature toggles from the /management/info response and makes them available through FeatureAvailability.
  • Update checks are restarted when the server URL changes, ensuring that the latest app version and feature availability are always fetched in time — without waiting for a fixed delay.
  • The check runs only when the app is in RESUMED state and isLoggedIn, reducing unnecessary processing and ensuring updates appear promptly.
  • Unit Test Extended for Feature Toggles

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.

  • Ensure the server reports a version equal to the current app version.
  • Launch the app.
  • ( Log in if you are not)
  • Verify that no update prompt appears.

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.

  • Locally modify the server response to return a higher version than the current app version.
  • Launch the app.
  • ( Log in if you are not)
  • Verify that the UpdateScreen appears.
  • Click the "Download" button.
  • Confirm that the button redirects to the Google Play Store.
  • If the app cannot reach the server, it should not force an update.

Case 3: Feature Toggle

  • Observe the logs – every 60 seconds, the update and feature information should be fetched and printed.
  • Confirm that feature availability is correctly set in logs.
  • These logs will be removed after testing.

Screenshots

Screenshot 2025-04-03 at 17 17 55

@eylulnc eylulnc requested a review from FelberMartin April 3, 2025 15:20
@eylulnc eylulnc self-assigned this Apr 3, 2025
@eylulnc eylulnc requested a review from julian-wls April 3, 2025 15:21
@eylulnc eylulnc added the ready for review This PR can be reviewed label Apr 3, 2025
Copy link
Collaborator

@FelberMartin FelberMartin left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Just a few smaller code comments :)

@eylulnc eylulnc requested a review from FelberMartin April 4, 2025 17:41
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
ready for review This PR can be reviewed
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants