I want to show my app in the default app list . For example if my App is a music player , then i want to open all files with .mp3 with my app. I mean that i want my app to be listed in the deafult apps list for that specic extenison .1I want my app to come in the list of deafult lists of app. Just like this1
Note .. I am new
You need to declare in your AndroidManifest that your app can handle these types of files. You do this with an
intent-filter
:This means that any time an app launches an
implicit Intent
to play an audio file, your app will show up on the list of selectable apps.