mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-04-25 03:29:58 -07:00
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.
42 lines
799 B
Plaintext
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",
|
|
],
|
|
)
|