mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
* Clock, music player, snake game removed * Music player, picopass assets removed Co-authored-by: あく <alleteam@gmail.com>
33 lines
621 B
Plaintext
33 lines
621 B
Plaintext
App(
|
|
appid="main_apps",
|
|
name="Basic applications for main menu",
|
|
apptype=FlipperAppType.METAPACKAGE,
|
|
provides=[
|
|
"gpio",
|
|
"ibutton",
|
|
"infrared",
|
|
"lfrfid",
|
|
"nfc",
|
|
"subghz",
|
|
"bad_kb",
|
|
"u2f",
|
|
"xtreme_app",
|
|
"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",
|
|
],
|
|
)
|