List of usage examples for android.content Intent ACTION_BUG_REPORT
String ACTION_BUG_REPORT
To view the source code for android.content Intent ACTION_BUG_REPORT.
Click Source Link
From source file:com.android.tv.settings.about.AboutFragment.java
private void sendFeedback() { String reporterPackage = DeviceInfoUtils.getFeedbackReporterPackage(getActivity()); if (TextUtils.isEmpty(reporterPackage)) { return;/*from w ww . j a v a2 s. co m*/ } Intent intent = new Intent(Intent.ACTION_BUG_REPORT); intent.setPackage(reporterPackage); startActivityForResult(intent, 0); }