SOに関する質問の1つで参照されているGmail.javaリンクが壊れています。
私のコードは
String account="abc.xyz@gmail.com";
Uri LABELS_URI = Uri.parse("content://gmail-ls/unread/");
Log.d("pavan","label "+LABELS_URI );
Uri ACCOUNT_URI = Uri.withAppendedPath(LABELS_URI, account);
Log.d("pavan","label "+ACCOUNT_URI );
ContentResolver contentResolver= this.getContentResolver();
Log.d("pavan","contentResolver "+contentResolver );
Cursor cursor = contentResolver.query(ACCOUNT_URI, null, null, null, null);
しかし、contentResolver行がエラーをスローしているとlogcatは言います:gmail-lsのプロバイダー情報が見つかりません。
これを解決する方法はありますか?