Anthea
Anthea

Reputation: 3809

Does google glass supports 'kiosk mode'?

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?

Upvotes: 1

Views: 178

Answers (1)

David C Adams
David C Adams

Reputation: 1973

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

Upvotes: 0

Related Questions