Hi have a java with this code to create sharing intent
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "text" );
sendIntent.putExtra(Intent.EXTRA_SUBJECT, "subject" );
sendIntent.setType("text/plain");
It now creates a popup of available apps and ask if you want to use the chosen app always or just once is there a setting to put it on just once and remove this 2 buttons?
Is there such a option in android like Intent.setOption('just once')?
Thanks