mirror of
https://github.com/Next-Flip/Momentum-Firmware.git
synced 2026-05-09 05:49:09 -07:00
24 lines
493 B
Plaintext
24 lines
493 B
Plaintext
App(
|
|
appid="totp",
|
|
name="Authenticator",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="totp_app",
|
|
cdefines=["APP_TOTP"],
|
|
requires=[
|
|
"gui",
|
|
"cli",
|
|
"dialogs"
|
|
],
|
|
provides=["totp_start"],
|
|
stack_size=2 * 1024,
|
|
order=20,
|
|
fap_category="Misc",
|
|
fap_icon="totp_10px.png",
|
|
)
|
|
# App(
|
|
# appid="totp_start",
|
|
# apptype=FlipperAppType.STARTUP,
|
|
# entry_point="totp_on_system_start",
|
|
# requires=["totp"],
|
|
# order=30,
|
|
# ) |