A lamp app? Does it use the device flashlight? Not all phones have a flashlight.
Your app works on three devices. Great. You know what capabilities they have; do you know what hardware is present in the User's device? Figure out what might be different in the user's device. You can google the specs for the user's phone on the Web.
If you do not have the model and same operating system ti test on, debugging an issue like this could be impossible. The app might be failing because it lacks crucial hardware, its system memory or storage memory is full etc.or the app uses a capability that is not available on the User's operating system.
Some developers use an emulator to test apps. An emulator works well if the issue is not a hardware issue, that is you are testing for performance on different operating systems and screen sizes.
Good luck..