adaptation to the new build system + fixes

This commit is contained in:
Eng1n33r
2022-06-26 20:57:29 +03:00
parent aaeede7793
commit 1c55a55ddd
28 changed files with 173 additions and 868 deletions

View File

@@ -35,7 +35,29 @@ App(
apptype=FlipperAppType.METAPACKAGE,
provides=[
"music_player",
"snake_game",
"bt_hid",
],
)
App(
appid="custom_games",
name="Custom applications for games menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
"snake_game",
"tetris_game",
"arkanoid_game",
"tictactoe_game",
],
)
App(
appid="custom_apps",
name="Custom applications for main menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
"clock",
"spectrum_analyzer",
"unirfremix",
],
)