クレジットカードはまとめる時代になるのだろうね - Google Wallet card

 

正直、みんなが思ってるはず。

「カードが多すぎて財布に入らない。」

images

無理やり、選抜メンバーをこんな綺麗に財布に並べたりして、ほとんど意味が無い。

 

数日前、こんなスキミングな操作で複数のカードをまとめられるデバイスとかも登場したり。

複数のカードに変身する電子クレジットカードの「Coin」。予約目標を40分で達成 | TechCrunch Japan 複数のカードに変身する電子クレジットカードの「Coin」。予約目標を40分で達成 | TechCrunch Japan

複数のカードを1枚にまとめられる「Coin」、米国で予約開始 - ITmedia ニュース 複数のカードを1枚にまとめられる「Coin」、米国で予約開始 - ITmedia ニュース

で、昨日、Google関連でもこんな。

続きを読む >>


Google Glass「GDK Sneak Peek」を使う。

 

公開されました。

Glass Developers — Google Developers Glass Developers — Google Developers

SDK API15 が更新されていますので、こちらをアップデートします。

Android_SDK_Manager

ここからスタートです。

続きを読む >>


関連ワード:  AndroidGoogle速報開発


そのうち日本にも上陸するだろう Google「App Indexing」の intent-filter の記述

 

11月の初旬頃、アナウンスされた「App Indexing」。

Google検索での検索結果画面に、ダイレクトでアプリを起動できるボタンが表示されるようになるというやつ。

App_Indexing_for_Google_Search_—_Google_Developers

App Indexing for Google Search — Google Developers App Indexing for Google Search — Google Developers

今はまだ、日本では、いや、USでも、公開されてないような雰囲気ですが。

まずは登録すればUSから利用できるようになるとか。

App_Indexing_-_Expression_of_Interest

App Indexing - Expression of Interest App Indexing - Expression of Interest

利用の手順としては、公開サイトやそのサイトマップに「おれおれスキーム」なURLを埋め込んでおきなさい、と。
きっとクローラが持っていくのでしょう。

App_Indexing_for_Google_Search_—_Google_Developers

そして、アプリ側には、ブラウザ上のクリックに反応する <intent-filter> を記述しておきなさい、以下2つのURIに対してのクリックに反応するよ、と。

・ http://www.example.com/gizmos 
・ example://gizmos

<intent-filter>
    <action android:name="android.intent.action.VIEW" />
    <category android:name="android.intent.category.DEFAULT" />
    <category android:name="android.intent.category.BROWSABLE" />
    <!-- Accepts URIs that begin with "example://gizmos" -->
    <data android:scheme="example"
          android:host="gizmos" />
    <!-- Accepts URIs that begin with "http://www.example.com/gizmos" -->
    <data android:scheme="http"
          android:host="www.example.com"
          android:pathPrefix="gizmos" />
</intent-filter>

この記述をアプリに適用したら、以下のコマンドで試してみたらいいらしい。

$ adb shell am start -W -a android.intent.action.VIEW -d "example://gizmos" com.example.android

で、やってみたら、

続きを読む >>