application.fam 448 B

123456789101112131415161718
  1. App(
  2. appid="qrcode",
  3. name="qrcode",
  4. fap_description="Display qrcodes",
  5. fap_author="Bob Matcuk",
  6. fap_weburl="https://github.com/bmatcuk/flipperzero-qrcode",
  7. apptype=FlipperAppType.EXTERNAL,
  8. entry_point="qrcode_app",
  9. stack_size=2 * 1024,
  10. cdefines=["APP_QRCODE"],
  11. requires=[
  12. "gui",
  13. "dialogs",
  14. ],
  15. fap_category="Tools",
  16. fap_icon="icons/qrcode_10px.png",
  17. fap_icon_assets="icons",
  18. )