Skip to content

Instantly share code, notes, and snippets.

@wrygiel
Created April 15, 2020 21:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wrygiel/bfb1089461dd27e2a2b4b7c3591147d2 to your computer and use it in GitHub Desktop.
Save wrygiel/bfb1089461dd27e2a2b4b7c3591147d2 to your computer and use it in GitHub Desktop.
Smart AudioBook Player intents
I bought a Flic button and wanted to use it with Smart AudioBook Player, so I decompiled the APK to discover intents.
Perhaps this might help someone.
package: ak.alizandro.smartaudiobookplayer
actions:
<action android:name="ak.alizandro.smartaudiobookplayer.ActionPlayPause"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionPlay"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionPause"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionRewindBig"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionRewindSmall"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionFwdSmall"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionFwdBig"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionPrevFile"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionNextFile"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionAddBookmark"/>
<action android:name="ak.alizandro.smartaudiobookplayer.ActionExit"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment