Send an app crash report

android.intent.action.ACTION_APP_ERROR

The user pressed the “Report” button in the crash/ANR dialog. This intent is delivered to the package which installed the application, usually Google Play.

Read also the Android documentation

Use

public void startSendAnAppCrashReport(android.app.ApplicationErrorReport errorReport) {
    Intent intent = new Intent("android.intent.action.ACTION_APP_ERROR"); 
    intent.putExtra("android.intent.extra.BUG_REPORT", errorReport); // android.app.ApplicationErrorReport
    if (intent.resolveActivity(getPackageManager()) != null) { 
        startActivity(intent);
    }
}

Example intent filter

<activity ...>
    <intent-filter>
        <action android:name="android.intent.action.ACTION_APP_ERROR" />
        <category android:name="android.intent.category.DEFAULT" />
    </intent-filter>
</activity>
            

Apps Providing an Implementation

Search on Github

Search on Google Play, AppBrain, Amazon App store or similar (not yet available - please make this happen!)

For Specification Writers

Edit on Github