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