Files
Momentum-Firmware/applications/main/u2f_loader/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

15 lines
266 B
Plaintext

App(
appid="u2f_loader",
name="U2F",
apptype=FlipperAppType.APP,
entry_point="u2f_loader_app",
requires=[
"gui",
"dialogs",
],
stack_size=int(2 * 1024),
icon="A_U2F_14",
order=80,
link="/ext/apps/Main/u2f.fap",
)