I use this code to share text from my application:
Intent intent = new Intent();
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT, GetTxt());
intent.setType("text/plain");
startActivityForResult(intent, REQUEST_SEND_MSG);
and it appear the activity where I can choose the application on which I want to share. I noticed if I click on "Always open with..." I can't change it.
So how do I force the user to always select for application? On api 29 "PackageManager.clearPackagePreferredActivities" is deprecated so what can I use?