Androidのネイティブのフィードバック機能の受信場所

34 views
Skip to first unread message

P&A

unread,
Nov 19, 2013, 10:35:24 AM11/19/13
to android-deve...@googlegroups.com
現在、開発中のアプリにAndroidのネイティブのフィードバック機能を搭載としています。

GMailなどについているフィードバック機能と同じものを搭載しています。

試しに自分でフィードバックを送ってみて機能をみてみたら一切届いていない様子なのです。

あのフィードバック機能は送った際は、何処に受信されるのでしょうか?

誰かご教授頂けないでしょうか?


----- 記述しているコード -----

// バグレポートを呼ぶIntent作成
Intent intent = new Intent(Intent.ACTION_APP_ERROR);

ApplicationErrorReport report = new ApplicationErrorReport();
report.packageName = getPackageName(); // パッケージ名
report.time = System.currentTimeMillis(); // 時間
intent.putExtra(Intent.EXTRA_BUG_REPORT, report);
startActivity(intent);

※ActionBarでフィードバックをクリックするとIf-else文で実行する処理を行っています。

Reply all
Reply to author
Forward
0 new messages