application.fam 694 B

123456789101112131415161718192021222324
  1. # For details & more options, see documentation/AppManifests.md in firmware repo
  2. App(
  3. appid="weebo", # Must be unique
  4. name="Weebo", # Displayed in menus
  5. apptype=FlipperAppType.EXTERNAL,
  6. entry_point="weebo_app",
  7. stack_size=5 * 1024,
  8. fap_category="NFC",
  9. # Optional values
  10. fap_version="0.1",
  11. fap_icon="weebo.png", # 10x10 1-bit PNG
  12. fap_description="A maker",
  13. fap_author="bettse",
  14. fap_weburl="https://github.com/bettse/weebo",
  15. fap_icon_assets="images", # Image assets to compile for this application
  16. fap_libs=["mbedtls"],
  17. fap_private_libs=[
  18. Lib(
  19. name="amiitool",
  20. ),
  21. ],
  22. fap_file_assets="assets",
  23. )