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.
15 lines
288 B
Plaintext
15 lines
288 B
Plaintext
App(
|
|
appid="ibutton_loader",
|
|
name="iButton",
|
|
apptype=FlipperAppType.APP,
|
|
entry_point="ibutton_loader_app",
|
|
requires=[
|
|
"gui",
|
|
"storage",
|
|
],
|
|
stack_size=int(1.5 * 1024),
|
|
icon="A_iButton_14",
|
|
order=60,
|
|
link="/ext/apps/Main/ibutton.fap",
|
|
)
|