application.fam 1.0 KB

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