7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

SmartEyeGlass開発環境整備抜粋

Last updated at Posted at 2015-05-21

はじめに

SmartEyeGlass開発を始めましたが情報が少なく、 
インストールの備忘録として。
対象としては、すでにAndroid開発を行ってる人で、
SmartEyeGlassをやってみたいという人を対象にしています。
なお、SmartEyeGlassの実機がなくても
Android実機があればエミュレータで動作が確認できます。

関連リンク

日本語サイト: http://developer.sonymobile.com/ja/smarteyeglass/
インストールガイド:https://developer.sony.com/develop/wearables/smarteyeglass-sdk/
API: https://developer.sony.com/reference/seg-sdk/packages

私は

  • 開発環境はOSX10.10.3 、AndroidStudio
  • 実行環境Nexus9、AquosZeta
    で開発しています。

Android開発環境整備

インストールが楽なのと、一部ライブラリのインポートが楽なので
eclipse→AndroidStudioに移行しました。

SmartEyeGlassプラグインインストール

SDKマネージャーを起動し、Tools→Manage Add-On Sites...をクリック
スクリーンショット 2015-05-21 14.35.54.png

User Defined Sites のタブを押し、NEW→(http://dl.developer.sony.com/wearables/sdks/Sony-SmartEyeglass-SDK.xml) を入力しOKを押す

スクリーンショット 2015-05-21 14.39.01.png

Andoid4.4.2にSony SmartEyeGlass SDKが追加されるので、これにチェックをいれてインストールをする。
スクリーンショット 2015-05-21 14.45.12.png

エミュレーターの作成とサンプルアプリのインストール

Android上で動作するSmartEyeGlassのエミュレーターと付属のサンプルをインストールします。
adbコマンドが使えない場合は、必ず使えるようにしておいてください。

Google Playより、
以下をスマートフォン・タブレットにインストールします。
https://play.google.com/store/apps/details?id=com.sonyericsson.extras.liveware
https://play.google.com/store/apps/details?id=com.sony.smarteyeglass

次に、

cd SDKマネージャーの保存先/add-ons/addon-sony_smarteyglass_sdk_sony_19/apks

へ、ターミナル等で移動してください。
ここにSmartEyeGlassEmulator.apkとsamplesというディレクトリがあります。
SmartEyeGlassEmulator.apkをインストールし、スマートフォン(タブレット)上にSmartEyeGlassのエミュレーターを構築します。

adb install SmartEyeGlassEmulator.apk

次に、Samplesの中にあるサンプルをインストールしてみます。試しに、HelloWorld.apkをやってみます。

adb install HelloWorld.apk

次にアプリを実行してみます。
端末にインストールされた、SmartEyeGlassEmulatorを実行してみます。
緑色の文字が表示されている部分をスワイプすると、HelloWorldとあり、これをタップすると起動ができます。

7
7
1

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
7
7

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?