This commit is contained in:
RogueMaster
2022-09-28 16:43:02 -04:00
parent 289dc5f94c
commit 43b62bd2a5
40 changed files with 2104 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
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,
# )