Chandru
Chandru

Reputation: 5962

How to find the installed apps in google glass?

I started developing helloworld sample application for Google glass and followed all the similar steps as mentioned in the link and builded the application successfully . But unfortunately i couldn't able to find the installed application in the google glass device since i am a newbie to glass development. Kindly help me how to check the list of apps installed in the device. Thank you.

Upvotes: 1

Views: 1737

Answers (3)

Jason C
Jason C

Reputation: 40406

Not sure about the XE but in the EE2 you can view installed apps in a standard Android menu by doing the following:

  1. Go to settings card
  2. Swipe over to device info
  3. Tap it 5 times to open the Android settings menu
  4. Go to applications from there

The settings menu is really hard to navigate with the glass touch interface so you may want to use some remote interface. I've been using Vysor and I'm sure there are others.

Upvotes: 0

Picce
Picce

Reputation: 11

You need to add the following intent to manifest:

<intent-filter>
    <action android:name="android.intent.action.MAIN"/>
    <category android:name="com.google.android.glass.category.DIRECTORY"/>
</intent-filter>

Upvotes: 1

Johnny505
Johnny505

Reputation: 221

If the application wasn't built properly for Glass (With a voice trigger and the development permission needed if using a custom voice trigger) it will install but you won't see it in the list of apps on the device, you can see more info in the link below:

Why is my voice command missing from the ok glass menu in XE16?

There is currently no way for a user to view installed apps on Glass except using the main menu (Either by saying "OK Glass" or tapping to see the menu)

You can launch the activity using:

adb am start -n yourpackagename/.activityname

You can also try and use Launchy by Mike DiGiovanni which allows you to start native apps using the Glass interface

Upvotes: 1

Related Questions