Android Question Kiosk question (3)

DPaul

Active Member
Licensed User
Longtime User
Hi,

My app is a kiosk app. Works fine.
I use the app, and then exit the app.
But then, if i switch the tablet completely off (not standby),
and back on again, the app starts spontaneously, without tapping the icon.
Any ideas on how to avoid that ?

the exit code is this:
<code>
kiosk = Not(kiosk)
If kiosk = False Then
CancelScheduledService(KioskService)
StopService(KioskService)
End If

ExitApplication
</code>

thx,
Paul
 

Jmu5667

Well-Known Member
Licensed User
Longtime User
Check if you have a service that includes:

#StartAtBoot: true

change the true to false to prevent the service starting when the device boots.
 
Upvote 0

DPaul

Active Member
Licensed User
Longtime User
Good idea, but...
I have a starter service, and it says : #StartAtBoot = false .....

At boot or even at "restart" of the tablet, the app starts after about 5 seconds.
?
Paul
 
Upvote 0

DonManfred

Expert
Licensed User
Longtime User
Last edited:
Upvote 0

DPaul

Active Member
Licensed User
Longtime User
OK, give me some time to figure this out.
It is a bit annoying, but not a showstopper :)

thx,
Paul
 
Upvote 0
Top