mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-23 04:53:08 +00:00
95c1585df6
* Music player: move music_worker to library * Music player: drop cli * Debug: speaker debug app * Debug: baudrate arg in uart_echo app * Libs: add music_worker to api * Libs: add music_worker to targets linker_dependencies Co-authored-by: あく <alleteam@gmail.com>
16 lines
349 B
Text
16 lines
349 B
Text
App(
|
|
appid="music_player",
|
|
name="Music Player",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="music_player_app",
|
|
requires=[
|
|
"gui",
|
|
"dialogs",
|
|
],
|
|
stack_size=2 * 1024,
|
|
order=20,
|
|
fap_icon="icons/music_10px.png",
|
|
fap_category="Media",
|
|
fap_icon_assets="icons",
|
|
fap_libs=["music_worker"],
|
|
)
|