application.fam 1.1 KB

12345678910111213141516171819202122232425262728293031
  1. # Please refer to:
  2. # https://developer.flipper.net/flipperzero/doxygen/app_manifests.html
  3. App(
  4. appid="demo_app", # Must be unique
  5. name="Demo Application", # Displayed in UI
  6. apptype=FlipperAppType.EXTERNAL,
  7. entry_point="main_entrypoint",
  8. stack_size=2 * 1024, # size of memory stack it will allocate
  9. # source code settings
  10. sources=["src/*.c*", "src/*/*.c*"], # Due to limitation of the fbt,
  11. # you need to specify nested directories
  12. # manually since it doesn't support
  13. # recurse globbing such as "src/**/*.c*"
  14. # Dependencies
  15. requires=[
  16. ],
  17. # FAP Settings
  18. fap_category="Tools",
  19. fap_description="A simple app for demonstration",
  20. fap_version="1.0", # (major, minor)
  21. fap_icon="icon.png", # 10x10 1-bit PNG
  22. fap_author="Alex4386",
  23. fap_weburl="https://github.com/Alex4386/f0-template",
  24. fap_icon_assets="icons", # Image assets to compile for this application
  25. # available as {appid}_icons.h in the source code
  26. )