|
|
@@ -1,17 +1,32 @@
|
|
|
-# For details & more options, see documentation/AppManifests.md in firmware repo
|
|
|
+# Please refer to:
|
|
|
+# https://developer.flipper.net/flipperzero/doxygen/app_manifests.html
|
|
|
|
|
|
App(
|
|
|
appid="demo_app", # Must be unique
|
|
|
- name="App demo_app", # Displayed in UI
|
|
|
+ name="Demo Application", # Displayed in UI
|
|
|
apptype=FlipperAppType.EXTERNAL,
|
|
|
- entry_point="demo_app_app",
|
|
|
- stack_size=2 * 1024,
|
|
|
+ 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",
|
|
|
- # Optional values
|
|
|
- fap_description="A simple app",
|
|
|
+ fap_description="A simple app for demonstration",
|
|
|
fap_version="1.0", # (major, minor)
|
|
|
- fap_icon="demo_app.png", # 10x10 1-bit PNG
|
|
|
- # fap_author="J. Doe",
|
|
|
- # fap_weburl="https://github.com/user/demo_app",
|
|
|
- fap_icon_assets="images", # Image assets to compile for this application
|
|
|
+ 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
|
|
|
)
|