application.fam 541 B

12345678910111213141516171819202122232425262728
  1. App(
  2. appid="totp",
  3. name="Authenticator",
  4. apptype=FlipperAppType.EXTERNAL,
  5. entry_point="totp_app",
  6. cdefines=["APP_TOTP"],
  7. requires=[
  8. "gui",
  9. "cli",
  10. "dialogs",
  11. "storage",
  12. "input",
  13. "notification"
  14. ],
  15. provides=["totp_start"],
  16. stack_size=2 * 1024,
  17. order=20,
  18. fap_category="Misc",
  19. fap_icon="totp_10px.png"
  20. )
  21. App(
  22. appid="totp_start",
  23. apptype=FlipperAppType.STARTUP,
  24. entry_point="totp_on_system_start",
  25. requires=["totp"],
  26. order=30,
  27. )