I try to finish the activity and not have it in the responses. The following code seems to work on KitKat, but not on lolipop, since activity is always displayed in the responses.
intentInvite = new Intent( context, OnInviteActivity.class ); intentInvite.addFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP); intentInvite.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); intentInvite = createInviteIntent( intentCloud, intentInvite ); context.startActivity( intentInvite );
AndroidManifest.xml
<activity android:name=".OnInviteActivity" android:label="@string/app_name" android:excludeFromRecents="true" android:noHistory="true"
source share