I want to download files from a browser through my application. I am trying to list my application in a dialog box complete action using. It shows for other actions, such as view files, etc., but in the case of download files it does not appear in the dialog box. How can I list my application as in the picture?
I used these filters in my activity
<intent-filter> <action android:name="android.intent.action.SEND" /> <action android:name="android.intent.action.VIEW"/> <category android:name="android.intent.category.OPENABLE"/> <category android:name="android.intent.category.BROWSABLE"/> <category android:name="android.intent.category.DEFAULT"/> <data android:mimeType="*/*"/>

source
share