I'm starting developing some apps on Google Glass and I've tried to run the sample project that appears on the official developers.google.com/ page charades sample but when I import them on my Android Studio (Beta 0.8.6) it doesn't resolve all the imports.
import com.google.android.glass.media.Sounds;
import com.google.android.glass.touchpad.Gesture;
import com.google.android.glass.touchpad.GestureDetector;
The package of the project is
package com.google.android.glass.sample.charades;
seems that they hadn't upload all the project files. Any suggestion?
It's an importing issue: when importing the project, Android Studio assigns a wrong SDK to the module.
You need to change the SDK in build.gradle.
from
to
so the build.gradle (Module: app) should look like: