On Android Pie, I want to share my CSV file to any sharing app such as Bluetooth or email, etc... it runs in lower version but in 9.0 it won't
  final String test = "content://" + Environment.getExternalStorageDirectory() 
                                   + "/Download" + "/" + "ProgressivePayment.csv";
  Intent sharingIntent = new Intent();
  sharingIntent.setAction(Intent.ACTION_SEND);
  sharingIntent.putExtra(Intent.EXTRA_STREAM, Uri.parse(test));
  sharingIntent.setType("text/csv");
  startActivity(Intent.createChooser(sharingIntent, "share file with"));
 
     
    