application.fam 555 B

1234567891011121314151617
  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=2 * 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. )