forked from flipperdevices/flipperzero-catalog-sample-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
application.fam
32 lines (27 loc) · 1.05 KB
/
application.fam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# 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="entrypoint",
stack_size=2 * 1024, # size of memory stack it will allocate
# source code settings
sources=[ # Due to limitation of the fbt,
"src/*.c*", # you need to specify nested directories
"src/*/*.c*", # manually since it doesn't support
"src/*/*/*.c*" # recurse globbing such as "src/**/*.c*"
],
# Dependencies
requires=[
],
# 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
)