I am trying to send a file via bluetooth using my application. I already changed the mime type to random, like asdxasd / asdxa And the file has an extension that I need to use, i.e. .sso
When I use the sharing intent, only the bluetooth and gmail option appears, but can I remove the gmail option from the list?
Thanks in advance! I use this code to send it using the intent:
file = new FileSystem(this).saveTemp(); Intent sharingIntent = new Intent(Intent.ACTION_SEND); Uri screenshotUri = Uri.fromFile(file); sharingIntent.setType("test/onlineconfig"); sharingIntent.putExtra(Intent.EXTRA_STREAM, screenshotUri); startActivity(Intent.createChooser(sharingIntent, "Share Config Using"));
source share