application.fam 619 B

123456789101112131415161718192021222324252627
  1. App(
  2. appid="mfkey",
  3. name="MFKey",
  4. apptype=FlipperAppType.EXTERNAL,
  5. targets=["f7"],
  6. entry_point="mfkey_main",
  7. requires=[
  8. "gui",
  9. "storage",
  10. ],
  11. stack_size=1 * 1024,
  12. fap_icon="mfkey.png",
  13. fap_category="NFC",
  14. fap_author="@noproto",
  15. fap_icon_assets="images",
  16. fap_weburl="https://github.com/noproto/FlipperMfkey",
  17. fap_description="MIFARE Classic key recovery tool",
  18. fap_version="2.1",
  19. )
  20. App(
  21. appid="mfkey_init_plugin",
  22. apptype=FlipperAppType.PLUGIN,
  23. entry_point="init_plugin_ep",
  24. requires=["mfkey"],
  25. sources=["init_plugin.c"],
  26. )