I'm trying to make my app appear in this screen: Download Apps List
So that I can download files using my app.. I added the following Intent filter into my manifest:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="application/*" android:host="*" android:pathPattern=".*.ext" />
</intent-filter>
But this has no effect at all.. Is there a way to do that ?