A company deploys a custom app via MDM to Android devices. Users report that the app crashes immediately upon launch. The app works fine on the developer's test device. What is the most likely cause?
If the app targets a higher API level than the device's OS, it will crash on launch due to missing system features.
Why this answer
App crashes on deployment often stem from missing dependencies or incompatible API levels. The most common cause is that the target devices are running an older Android version than the app's minimum SDK. The technician should check the app's manifest requirements against the device OS version.