Reputation: 3809
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
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