Files
Momentum-Firmware/applications/main/application.fam
ESurge 244a8456ef Changed the way loader.c loads Clock/iButton/U2F
Added a new variable in application.fam file to add the link to the FAP. It now supports any FAP as long as the application.fam file is formatted correctly and you create a loader "app".

If no link is specified in the application.fam file, it doesn't attempt to load a FAP.
2022-09-21 03:08:32 -07:00

42 lines
799 B
Plaintext

App(
appid="main_apps",
name="Basic applications for main menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
"clock_loader",
"gpio",
# "ibutton",
"ibutton_loader",
"infrared",
"lfrfid",
"nfc",
"subghz",
"bad_usb",
# "u2f",
"u2f_loader",
"fap_loader",
"archive",
# "Clock",
"SubGHz_Remote",
# "Spectrum_Analyzer",
],
)
App(
appid="main_apps_default",
name="Basic applications for main menu",
apptype=FlipperAppType.METAPACKAGE,
provides=[
"gpio",
#"ibutton",
"infrared",
"lfrfid",
"nfc",
"subghz",
#"bad_usb",
#"u2f",
"fap_loader",
"archive",
],
)