thaarok / cordova-plugin-kiosk

Cordova plugin to use Cordova application "in kiosk mode" and as Android launcher
Apache License 2.0
142 stars 101 forks source link

Never finish the app #64

Closed zhanghuanchong closed 6 years ago

zhanghuanchong commented 6 years ago

Override super's finish method.

zhanghuanchong commented 6 years ago

Resolves #63

thaarok commented 6 years ago

Thanks! Do you have some idea why is finish() overriding needed? It does not look much clear...

zhanghuanchong commented 6 years ago

Some devices' back button will trigger finish method, instead of onKeyDown, onKeyUp or onBackPressed, which caused user able to get rid of restriction.

zhanghuanchong commented 6 years ago

To be a kiosk app, the finish method makes no sense. If it exit kiosk mode, the user is easy to kill it. If developer want to quit app, he has many ways, so finish method can be override safely.

thaarok commented 6 years ago

Thanks for clarification!