I've made a video player (https://play.google.com/store/apps/details?id=com.troberg.svpfull). Now, I want it to appear as a selectable alternative when the user selects a video file in a file manager.
In other words, I need to respond to the correct intent.
After googling around and seeing many variants and tried them all, I still don't get the desired effect. My app does not show up in the list of player apps.
What I have at the moment:
Manifest:
Service (left as default, except for this):
As you can see, about as bare bones as it gets. What am I missing?
In other words, I need to respond to the correct intent.
After googling around and seeing many variants and tried them all, I still don't get the desired effect. My app does not show up in the list of player apps.
What I have at the moment:
Manifest:
B4X:
AddReceiverText(PlayIntent,
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<data android:mimeType="video/*"/>
</intent-filter>)
Service (left as default, except for this):
B4X:
Sub Service_Start (StartingIntent As Intent)
Log(StartingIntent.Action)
Log(StartingIntent.ExtrasToString)
End Sub
As you can see, about as bare bones as it gets. What am I missing?