You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
MainActivity::loadPreferences, when we don't have an IP address, automatically opens the settings screen (SettingsActivity). This means that if the user opens this app for the first time, they will be immediately pushed to SettingsActivity.
It also means that pressing back from SettingsActivity without having a valid stored IP address may cause this code to run, pushing the user forward into SettingsActivity. This occurs naturally on low-memory devices, and can be easily simulated by enabling the developer option Don't keep activities.
I suggest that we instead put a noticeable (but non-modal!) warning that the app is not fully configured, with a button to view app settings. Perhaps a SnackBar?
The text was updated successfully, but these errors were encountered:
Lets disscuss this after i get my changes in. I am still forcing to settings but there is better feedback on the screen when the app is not configured.
MainActivity::loadPreferences
, when we don't have an IP address, automatically opens the settings screen (SettingsActivity
). This means that if the user opens this app for the first time, they will be immediately pushed toSettingsActivity
.It also means that pressing back from
SettingsActivity
without having a valid stored IP address may cause this code to run, pushing the user forward intoSettingsActivity
. This occurs naturally on low-memory devices, and can be easily simulated by enabling the developer option Don't keep activities.I suggest that we instead put a noticeable (but non-modal!) warning that the app is not fully configured, with a button to view app settings. Perhaps a SnackBar?
The text was updated successfully, but these errors were encountered: