Questions tagged [google-glass]

Google Glass is a project to create a commercially-viable, next-generation wearable smart device in the form of a pair of glasses featuring a head-mounted display. The product allows users to interact with the device via voice and allows other smartphone-like functionality. Google Glass runs on Android with additional APIs for developers.

Google Glass is a research and development program by Google to develop an augmented reality head-mounted display (HMD). Google Glass runs and displays information in smartphone-like format hands-free and interacts with the Internet via natural language voice commands. The prototype's functionality and minimalist appearance (aluminium strip with 2 nose pads) has been compared to Steve Mann's EyeTap. (from wikipedia)

1569 questions
0
votes
1 answer

Mirror API always request auth - java example code

I'm very new with Glass and I follow this link https://developers.google.com/glass/develop/mirror/quickstart/java to deploy project to Google app engine. Now everything works, but every time when I close browser then open browser and access my…
Sniper
  • 5
  • 3
0
votes
1 answer

Google Glass - replace in app context menu trigger 'ok glass' voice trigger with the actual top level menu selections as voice triggers instead

I've seen a couple of examples where on phone the voice recognizer is running as a background service - constantly listening and processing speech. I can't tell if implementing such services is restricted in the current GDK. I'm prototyping a…
jchristof
  • 2,794
  • 7
  • 32
  • 47
0
votes
1 answer

GDK Authentication Process of Google Glass

In Google Glass Application using GDK GDK Authentication Process When users turn on your Glassware in MyGlass, they are redirected to your authentication URL. These requests include a query parameter named userToken that you need to use later. not…
Sushil
  • 147
  • 1
  • 9
0
votes
1 answer

XML versions of Mirror API templates

I've been Googling all over and haven't found any XML versions of the Mirror API templates. I know that the Mirror API allows you to see the HTML and CSS associated with these cards, but since I have to use the GDK in my application and can't use…
cereallarceny
  • 4,913
  • 4
  • 39
  • 74
0
votes
1 answer

Consuming OData with Google Glass

I'm trying to consume OData within a Google Glass application. What I was doing so far is to import the required odata4j.JARs and implement a class called "PersonRequest" which extends the "AsyncTask" class. The class only does the following: public…
0
votes
1 answer

How can I Insert account my google glass using node.js

I'd like insert account my google glass, but I cann't do that. I'm using node.js(v0.10.31), googleapis(v1.0.11) and passport-google-oauth(v0.1.5) of course, I turned on Google Mirror API on Google Developers Console. and made pem file. Here is…
0
votes
3 answers

How to authenticate when using VideoPlayer?

I am implementing the following solution Play a video in Glass Intent i = new Intent(); i.setAction("com.google.glass.action.VIDEOPLAYER"); i.putExtra("video_url", "..."); startActivity(i); But I am getting hit with a 401 error. To authenticate I…
PrivatMamtora
  • 2,072
  • 2
  • 19
  • 29
0
votes
1 answer

Contextual Voice Commands Google Glass

what I'm trying to do is to make an activity which should be able to display the "ok, glass" command to open contextual voice commands. I already achieved it but only when I tap on the Touchpad of the activity. Is there a possibility that when I say…
user2858559
  • 39
  • 1
  • 9
0
votes
1 answer

Google Glass - WifiCompass intergration. PAINT LOOP ONLY TRIGGERED ONCE

My problem is hard to explain but i am going to try. I am making a project with inhouse navigation software (Wificompass - https://code.google.com/p/wificompass/ ) and google glass. i am using the orientation of the google glass and the Wificompass…
Menno
  • 31
  • 5
0
votes
1 answer

Text to speech in google glass- only the last function call works

here is my code, @Override public void onInit(int status) { if (status == TextToSpeech.SUCCESS) { initialized = true; tts.setLanguage(Locale.ENGLISH); if (queuedText != null) { …
Prasanna Aarthi
  • 3,439
  • 4
  • 26
  • 48
0
votes
1 answer

Google Glass voice menu update

In my app I'm using onCreatePanelMenu to inflate a menu for the voice recognition. When I inflate a simple menu it works fine, but what I want to do is to inflate a different menu depending on what moment of the program the user is. Using…
gkapellmann
  • 313
  • 3
  • 19
0
votes
2 answers

Inserting account using Google Mirror API

EDIT We have informed google about this and they solved it. Now error dissappeared, but $service->accounts->insert now returns just null instead of the account. I am trying to insert an account via Google Mirror API. So what am I…
Kamil
  • 1,633
  • 2
  • 21
  • 24
0
votes
1 answer

Android ADT "WindowUtils" class missing

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: …
Peter
  • 11,260
  • 14
  • 78
  • 155
0
votes
2 answers

File permissions with glass gdk

I can create a JSON file in DCIM directory of Glass but the file is not visible when I access it on glass. Here is the code: File jsonFile = new File(Environment.getExternalStorageDirectory() + File.separator +…
Euber
  • 33
  • 5
0
votes
1 answer

Supporting voice and touch commands in Google Glass

After following the tutorial provided by Google itself still only voice commands are recognized. https://developers.google.com/glass/develop/gdk/voice?hl=de#voice-and-touch @Override protected void onCreate(Bundle savedInstanceState) { …
schlingel
  • 3
  • 3