Google Drive 「セキュリティ診断で 2GB 無料追加」はどこで確認できるのか

2/17 までにセキュリティ診断を行うと, 2GB無料追加のキャンペーン.

This Safer Internet Day, we’re reminded how important online safety is and hope you’ll use this as an opportunity to take 2 minutes to complete a simple Security Checkup. While everything stored in Drive is always encrypted in transit and at rest in Google’s custom-built data centers, this checkup ensures you’re making the most of the 24/7 protection you already get from Google. As our way of saying thanks for completing the checkup by 17 February 2015, we’ll give you a permanent 2 gigabyte bump in your Google Drive storage plan.

Google Drive Blog: A quick checkup and a simple thanks

確認しながらボタンを押すだけ. 数分で終わる.

アカウントの保護_-_アカウント設定

で, どこで確認したらいいのか.

Google ドライブは、ウェブ上でも、携帯端末でも、パソコンでも使用できます。使用中の容量を確認するには、ウェブ上の Google ドライブにアクセスして左下にカーソルを合わせます。開いたウィンドウに使用容量が表示されます。Google ドライブ、Gmail、Google+ フォトでの使用状況を確認するには www.google.com/settings/storage にアクセスしてください。

保存容量の上限を確認する - ドライブ ヘルプ

Drive, Gmail など容量のカウントにいくつかきまりがあるようだけども.

https://www.google.com/settings/storage

ドライブ_ストレージ

あれ, 増えてないような...

先ほどの公式ブログの説明をよく見てみると,

We’ll be granting the storage automatically to everyone around 28 February 2015 and we’ll send you an email when your adjustment is complete.

今月末頃に追加されて, メールで追加完了のお知らせくるのかっ.


Wi-Fi接続なしでテレビに動画を飛ばせるようになった Chromecastのゲストモード

なんなんでしょう, この新機能は.

Google Chrome Blog: Chromecast, now with guest mode

Wi-Fiなしで?

どうやらこんな感じの様子です.

続きを読む >>


Twitter のように端末にインストールしているアプリの一覧を取得する

Twitterが.

Twitterが、公式アプリでユーザーの端末内のアプリ一覧情報を収集する「アプリリスト」を次期アップデートで有効にする。

Twitterヘルプセンター___Twitterのアプリリストとは

Twitter、端末にインストールされたアプリの一覧収集機能を追加 - ITmedia ニュース

インストールしているアプリ情報を取得するのにパーミッションは要らない.

// アイコンから起動できるアプリのみ取得
Intent intent = new Intent(Intent.ACTION_MAIN, null);
intent.addCategory(Intent.CATEGORY_LAUNCHER);
PackageManager pm = context.getPackageManager();
List<ResolveInfo> packs = pm.queryIntentActivities(intent, 0);
ResolveInfo info;
int count_packs = packs.size();
for (int i = 0; i < count_packs; i++) {
  info = packs.get(i);
  ActivityInfo activityInfo = info.activityInfo;
  String label = activityInfo.applicationInfo.loadLabel(pm).toString();
  String packageName = activityInfo.packageName;
  String icon = "android.resource://" + packageName + "/" + activityInfo.applicationInfo.icon;
  String description = (String) p.applicationInfo.loadDescription(pm);
  String versionName = p.versionName;
  String versionCode = ((int)p.versionCode) + "";

  Log.d("FetchInstalledApps", label + " " + packageName + " " + icon);
}

Intent.CATEGORY_LAUCHER を変えたりしながらいろんな条件で取得できる.

肝は「ActivityInfo」.

ActivityInfo | Android Developers

前述, Twitter は以下のようにアナウンスしている.

情報をTwitterに提供したくない場合は設定で無効にする必要がある。

お行儀の良い大手Twitterだからこんなに丁寧だけど.

すでに, 他のアプリで抜かれててもおかしくない, ようにも思ったり...

あなたのAndroidの個人情報がアプリ開発者によって抜き取り可能かをチェックする方法

Twitterヘルプセンター | Twitterのアプリリストとは