I loaded one of the sample GDK apps and ran it on glass using ADT. How do I now delete the App from glass?
You can uninstall it using adb
from the terminal:
$ adb uninstall your.apps.package.name
where your.apps.package.name
is the package defined in the application's manifest.
Furthermore, if you ever install anything where you don't have the source and you're not sure what the package name is, you can list all the installed packages with the following command:
$ adb shell pm list packages