Reputation: 19534
I've been able to get my apk's to run on Glass, but I have to use adb shell am to start it.
Glass auto-sleeps after a few seconds - how do I start my app from device, or keep it running after glass auto sleeps?
Upvotes: 1
Views: 225
Reputation: 6034
This is not currently possible: you will need to prevent the screen from going to sleep.
There are a few options to do that, the easiest is by using the android:keepScreenOn
attribute in your View
declaration.
Upvotes: 1