Created
April 15, 2020 21:03
-
-
Save wrygiel/bfb1089461dd27e2a2b4b7c3591147d2 to your computer and use it in GitHub Desktop.
Smart AudioBook Player intents
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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