Kiosk
Application permits to set an URL that will be opened on app start in a Webview with Lock Task mode active (Kiosk app). You can return to URL configuration screen clicking FAB button and enter an hardcoded PIN. Inspired by mrugacz95/kiosk
Article
HOW TO TURN YOUR ANDROID APPLICATION INTO A KIOSK
Presentation
COSU, czyli jak zamienić Androida w kiosk
Usage
- Make factory reset
- Skip adding google acount
- Install apk
adb install path/to/kiosk.apk
- Set device owner
adb shell dpm set-device-owner pl.snowdog.kiosk/.MyDeviceAdminReceiver
Usefull commands
adb
command location $HOME/Android/Sdk/platform-tools/adb
Remove device owner
adb shell dpm remove-active-admin pl.snowdog.kiosk/.MyDeviceAdminReceiver
Uninstall apk
adb uninstall pl.snowdog.kiosk