mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-22 20:43:07 +00:00
b368660d48
* Clock, music player, snake game removed * Music player, picopass assets removed Co-authored-by: あく <alleteam@gmail.com>
31 lines
600 B
Text
31 lines
600 B
Text
App(
|
|
appid="main_apps",
|
|
name="Basic applications for main menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"gpio",
|
|
"ibutton",
|
|
"infrared",
|
|
"lfrfid",
|
|
"nfc",
|
|
"subghz",
|
|
"bad_usb",
|
|
"u2f",
|
|
"archive",
|
|
"main_apps_on_start",
|
|
],
|
|
)
|
|
|
|
App(
|
|
appid="main_apps_on_start",
|
|
name="On start hooks",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"ibutton_start",
|
|
"onewire_start",
|
|
"subghz_start",
|
|
"infrared_start",
|
|
"lfrfid_start",
|
|
"nfc_start",
|
|
],
|
|
)
|