Dears,
I installed the Vibration Plugin in my Personel Environment. The demo application works very well in my cellphone. But when I use the client actions in my mobile application it not works. Some suggestion?
Thanks,
Roberto
Solution is posted to https://www.outsystems.com/forums/discussion/97479/vibration-plugin-does-not-work-within-my-application/#Post421436
Hello @Easy Batch ,
use javascript instead of using plugin for vibration
if ("vibrate" in navigator) {
navigator.vibrate(1000);
}
to know more click here...
Thanks...
Hi Zeeshan Khan,
I am using this javascript. It works, but when the cell phone screen is turned off after the set brightness time, the vibration no longer works. It only works with the screen active. I would like my application to send a vibration even when the screen is off.
Thanks