Page 1 of 1

access the phones backbutton in jqm app

Posted: Tue Aug 22, 2017 9:18 am
by Terry Gilliver

is it possible to exit an app by pressing the devices back button twice in succession as with most other apps on the market? It seems to be somewhat of a standard way to exit apps.


access the phones backbutton in jqm app

Posted: Tue Aug 22, 2017 12:10 pm
by Illya Stepanov

Hello Terry,

The Appery.io uses the default list of Cordova plugins in the projects, and if you need some specific device features for your app you should use a Cordova plugin which could provide such features.


access the phones backbutton in jqm app

Posted: Tue Aug 22, 2017 1:53 pm
by Jeffry Reed

Terry,

From what I read you cannot programmatically exit app on iOS (https://stackoverflow.com/questions/2...)

See what you can do with...

$.mobile.back();

navigator.app.exitApp();


access the phones backbutton in jqm app

Posted: Tue Aug 22, 2017 2:15 pm
by Terry Gilliver

Thanks guys, I will look into it.