並び順

ブックマーク数

期間指定

  • から
  • まで

1 - 1 件 / 1件

新着順 人気順

GoogleCloudMessagingの検索結果1 - 1 件 / 1件

  • Android GoogleCloudMessaging.register() はUIスレッドで呼んではいけない

    public static String getRegistrationId(Context context) { GoogleCloudMessaging gcm = GoogleCloudMessaging.getInstance(context); String registrationId = null; try { registrationId = gcm.register(Consts.PROJECT_NUMBER); } catch (IOException e) { e.printStackTrace(); } return registrationId; } を呼んでるんだけど null が返ってくる、なぜだ。。。と思っていたら、IOException が発生していた。。。 10-01 18:17:18.489: W/System.err(6397): java.io.I

    1