mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 13:33:06 +00:00
20 lines
397 B
Text
20 lines
397 B
Text
App(
|
|
appid="totp",
|
|
name="Authenticator",
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
entry_point="totp_app",
|
|
cdefines=["APP_TOTP"],
|
|
requires=[
|
|
"gui",
|
|
"cli",
|
|
"dialogs",
|
|
"storage",
|
|
"input",
|
|
"notification"
|
|
],
|
|
stack_size=2 * 1024,
|
|
order=20,
|
|
fap_category="Misc",
|
|
fap_icon_assets="images",
|
|
fap_icon="totp_10px.png"
|
|
)
|