Why isn'y my KIOSK app is updating automatically?

767 Views Asked by At

I have a KIOSK app that runs on fully managed devices. I have pushed several updates on PlayStore and I can see the updated version on PlayStore App but they are not updating automatically.

I also set the auto-update policy to Always but still no luck. Help appreciated

2

There are 2 best solutions below

1
On

There is a property "minimumVersionCode": integer," in the application policy. you need set it for your application.hope this will help.

2
On

Try to use the SystemUpdateType set to WINDOWED to configure Play apps to be updated within a daily maintenance window. This is strongly recommended for kiosk devices because this is the only way apps persistently pinned to the foreground can be updated by Play.

And by default, apps are updated automatically when the following constraints are met:

  • The device is connected to a Wi-Fi network.
  • The device is charging.
  • The device is idle (i.e. not actively used).
  • The app to be updated is not running in the foreground.

Google Play typically checks for app updates once a day, so it can take up to 24 hours before an app update is added to the update queue. After an app is added to the queue, it will be automatically updated the next time the constraints above are met.