Does google glass supports 'kiosk mode'?

182 Views Asked by At

I am planning to use the Android GDK for a glass app. Is it possible to restrict the users interaction to that specific app, so all system apps will not be visible? If it is possible, how can you achieve this?

1

There are 1 best solutions below

0
David C Adams On

You can on the Enterprise edition; not sure about Explorer. You do it by setting your app as the launcher app. This can be done via ADB.

Per the Enterprise Developer Guides - Security Guides

$ adb shell settings put global launcher_package <custom_home_application_package_name>

$ adb shell settings put global launcher_activity <custom_home_application_activity_name>

$ adb shell settings put global is_custom_launcher 1