Mendix Native Mimimize screen and reopen kicking out of app

0
Hi Every one,We recently upgrade mendix native from 9 to 10.24.14.After upgrade we observe a issue when testing in zebra when user mimize the screen and again clcik on the screen the app is kicking out again need to reopen the app.Can any one face simailr issue or any solution to the issue?
asked
2 answers
0

Since you mentioned that this happens on a Zebra device, it could also be related to device-level configuration. For example, settings like battery optimization, kiosk mode, or enterprise device policies may terminate the app process when the application goes to the background.


It may help to check the device logs (logcat) when the app is minimized and then reopened. If the application is actually being killed and restarted, this usually becomes visible in the logs.


If this resolves your issue, please mark the answer as accepted so it can help others facing the same problem.


answered
0

Hi,

This issue is typically related to how the app behaves when moving from background to foreground after the upgrade. In Mendix 10 Native, there are some changes that can affect this behavior.


Possible Causes

  • Zebra device restrictions, such as aggressive battery optimization or background process management.


🔹 Suggested Checks / Solutions

  • Disable battery optimization for your app on Zebra devices
  • Ensure the app is allowed to run in the background without restrictions
  • Test on a non-Zebra device to confirm if the issue is device-specific
  • Check logs (Logcat) to identify if the app is being killed or crashing on resume
  • Make sure all native dependencies and modules are properly updated after migration


answered