I just created a new Android application project in Eclipse. The min-sdk is set to 16 and the target-sdk is set to 20. Following the documentation on Google Glass, I need to add the following line of code in my onCreate() method:
getWindow().requestFeature(WindowUtils.FEATURE_VOICE_COMMANDS);
However, Eclipse reports that WindowUtils class is not found.
Is there a library that I need to add to the project? The project creation wizard did not ask me for one. Regards.