We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I used this code to close the app and disable kiosk:
TemiProvider.setKiosk(false) finishAffinity(activity) exitProcess(-1)
but it doesn't work anymore, the app closes but as it is still a kiosk it reopens immediately. Is there any problem with setKiosk method?
The text was updated successfully, but these errors were encountered:
Please make sure this method is actually called.
https://github.com/robotemi/sdk/wiki/Kiosk-Mode#setkioskmodeon
Sorry, something went wrong.
Yes, setKiosk is a simple wrapper for setKioskModeOn:
fun setKiosk(enable: Boolean = true) { Robot.getInstance().setKioskModeOn(enable) }
No branches or pull requests
I used this code to close the app and disable kiosk:
TemiProvider.setKiosk(false)
finishAffinity(activity)
exitProcess(-1)
but it doesn't work anymore, the app closes but as it is still a kiosk it reopens immediately.
Is there any problem with setKiosk method?
The text was updated successfully, but these errors were encountered: