basics of the google glass programming

25
Basic of the Google Glass programming April 7, 2014 Miki Yutani Strategic Technology Center, TIS Inc.

Upload: miki-yutani

Post on 23-Aug-2014

371 views

Category:

Mobile


3 download

DESCRIPTION

 

TRANSCRIPT

Page 1: Basics of the Google Glass programming

Basic of the Google Glass programming

April 7, 2014Miki YutaniStrategic Technology Center, TIS Inc.

Page 2: Basics of the Google Glass programming

2

What is Google Glass?

Page 3: Basics of the Google Glass programming

3

Basic operations

Power button (rear)

Page 4: Basics of the Google Glass programming

4

Basic operations

Touchpad

Page 5: Basics of the Google Glass programming

5

Basic operations

Tap on touchpad

Page 6: Basics of the Google Glass programming

6

Basic operations

Swipe (forward)

Page 7: Basics of the Google Glass programming

7

Basic operations

Swipe (backward)

Page 8: Basics of the Google Glass programming

8

Basic operations

Cancel or break out

Page 9: Basics of the Google Glass programming

9

Basic operations

Voicecommand

Page 10: Basics of the Google Glass programming

10

Basic operations

Wink

Page 11: Basics of the Google Glass programming

11

Basic operations

Head detection

Page 12: Basics of the Google Glass programming

12

Home Screen

Voice command(or tap …)

Page 13: Basics of the Google Glass programming

13

Home Screen

Forward Backward

Page 14: Basics of the Google Glass programming

14

Timeline

Forward Backward

Cards

TimelineTap orvoice command

Details or option menu

Page 15: Basics of the Google Glass programming

15

Getting started with google glass

your Google+ and gmail account Setup wifi

https://glass.google.com/setup

Take a picture by glass

Page 16: Basics of the Google Glass programming

16

Getting started with google glass

MyGlass https://play.google.com/store/apps/details?

id=com.google.glass.companion

How to install the application in JapanDownload com.google.glass.companion.apk

from http://apps.evozi.com/apk-downloader/Install apk in your tablet directly

adb install -r com.google.glass.companion.apk

Pair your glass and myglass application

Page 17: Basics of the Google Glass programming

17

Glass application

Two API options of glass application Mirror API

Google API: https://code.google.com/apis/console/

Platform independentCommon infrastructureBuilt-in functionality

Glass Development Kit (GDK)Android SDKReal-time user interactionOffline functionalityAccess to hardware

Page 18: Basics of the Google Glass programming

18

Mirror API

Page 19: Basics of the Google Glass programming

19

Mirror API

www.googleapis.com

My web site

accounts.google.com

2.OAuth

4.Post (json)

5.Notification

3.Authenticate

1.Operate

Page 20: Basics of the Google Glass programming

20

Mirror API

var params = {};

params.text = 'Hello, I am a Mirror API.';

params.notification = {};

params.notification.level = 'DEFAULT';

var data = JSON.stringify(params);

var options = {

host: 'www.googleapis.com',

path: '/mirror/v1/timeline',

method: 'POST',

headers: {

'Content-Type': 'application/json',

'Content-Length': data.length,

'Authorization': 'Bearer ' + token

}

}

Page 21: Basics of the Google Glass programming

21

Glass Development Kit (GDK)$ android-sdk-linux/tools/android list

Available Android targets:

----------

id: 1 or "android-15"

Name: Android 4.0.3

(…)

----------

id: 2 or "Google Inc.:Glass Development Kit Sneak Peek:15"

Name: Glass Development Kit Sneak Peek

Type: Add-On

Vendor: Google Inc.

Revision: 2

Description: Sneak peek of the Glass Development Kit

Based on Android 4.0.3 (API level 15)

Libraries:

* com.google.android.glass (gdk.jar)

APIs for Glass Development Kit Sneak Peek

Skins: WQVGA400, WVGA854, WSVGA, WXGA720, HVGA, WQVGA432, QVGA,

ABIs : no ABIs.

(…)

Page 22: Basics of the Google Glass programming

22

Glass Development Kit (GDK)

public class HelloGlassActivity extends Activity

{

@Override

public void onCreate(Bundle savedInstanceState)

{

super.onCreate(savedInstanceState);

TimelineManager timelineManager =

TimelineManager.from(this);

Card card1 = new Card(this);

card1.setText(R.string.hello_message);

card1.setFootnote(new Date().toString());

timelineManager.insert(card1);

finish();

}

}

Page 23: Basics of the Google Glass programming

23

Glass Development Kit (GDK)$ cat AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>

<manifest xmlns:android="http://schemas.android.com/apk/res/android"

package="com.blackaplysia.helloglass"

android:versionCode="1"

android:versionName="1.0">

<application android:label="@string/app_name“

android:icon=“@drawable/ic_launcher”>

<activity android:name=“com.blackaplysia.helloglass.HelloGlassActivity”

android:label=“@string/app_name”

android:icon=“@drawable/ic_launcher”>

<intent-filter>

<action android:name=“android.intent.action.MAIN” />

<action android:name=“com.google.android.glass.action.VOICE_TRIGGER” />

</intent-filter>

<meta-data android:name="com.google.android.glass.VoiceTrigger"

android:resource="@xml/hello" />

</activity>

</application>

</manifest>

Page 24: Basics of the Google Glass programming

24

Glass Development Kit (GDK)

$ cat res/xml/hello.xml

<?xml version="1.0" encoding="utf-8"?>

<trigger keyword="@string/glass_voice_trigger" />

$ cat res/values/strings.xml

<?xml version="1.0" encoding="utf-8"?>

<resources>

<string name="app_name">HelloGlass</string>

<string name="hello_message">Hello, I am a glassware.</string>

<string name="glass_voice_trigger">say hello</string>

</resources>

Page 25: Basics of the Google Glass programming

25

Next …

Technical studies Live card

Service modelAction menuVoice command interfaceQR-code oriented input

ImmersionA unique user experience

Enterprise platform services Private web-based API set Input by watch type devices