Intents with Podcast Addict

Christophe

New member
Hello,

I am trying to use intents with Podcast addict. I found the manifest file of the application

XML:
<receiver name="com.bambuna.podcastaddict.receiver.PodcastAddictPlayerReceiver" exported="true">
      <intent-filter priority="1000">
        ...
        <action name="com.bambuna.podcastaddict.openplaylist"/>
        <action name="com.bambuna.podcastaddict.openplayer"/>
</receiver>

I use intent with the following parameters (I tried actity or service but both don't work)

Screenshot_20230216-214306.png

With Activity I get the following error :

Code:
{com.bambuna.podcastaddict/com.bambuna.podcastaddict.re
ceiver.PodcastAddictPlayerReceiver}; have you declared this
activity in your AndroidManifest.xml, or does your intent not
match its declared <intent-filter>?


With Service it doesn't do anything.

Could someone tell me what I am doing wrong ?

Thanks
 

Attachments

  • Screenshot_20230216-214228.png
    Screenshot_20230216-214228.png
    130.5 KB · Views: 3

Dimlos

Well-known member
I wasn't sure what you wanted to do, but here is the intent of opening the playlist.
 

Attachments

  • Podcast_Addict_Playlist.macro
    3.2 KB · Views: 14

Dimlos

Well-known member
This is supposed to be how the playlist starts playing.
The rest can be done by trial and error by applying this macro.
 

Attachments

  • Podcast_Addict_Play.macro
    3.3 KB · Views: 8
Top