I am using the below code for share content in android app, the code is working properly for android 7.+ but not working for marshmallow(6.0.1). please suggest.
shareNow.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
try {
Intent sharingIntent = new Intent(Intent.ACTION_SEND);
sharingIntent.setType("text/plain");
String shareBody = Constants.SHARE_TEXT + refer_code;
sharingIntent.putExtra(Intent.EXTRA_SUBJECT, "Share");
sharingIntent.putExtra(Intent.EXTRA_TEXT, shareBody);
startActivity(Intent.createChooser(sharingIntent, "Share via"));
} catch (Exception e) {
ShowToastMsg.showToast(getActivity(), "Error Occured");
}
}
});